/* Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */

/* ========================================================================
   Use this file to add custom CSS easily
 ========================================================================== */
.registration input[type=text]{
    text-transform: uppercase !important;
}

.registration input[type=password]{
    text-transform: initial !important;
}

#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;

  display: flex;
  align-items: center;      /* 🔥 centro vertical */
  justify-content: center;  /* 🔥 centro horizontal */
}

#popup-content {
  position: relative;
  background: #fff;

  width: 90%;
  max-width: 420px;

  padding: 12px;
  border-radius: 8px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

#popup-content img {
  width: 100%;
  height: auto;
  display: block;
}

#popup-close {
  position: absolute;
  top: -12px;
  right: -12px;

  width: 32px;
  height: 32px;

  background: #000;
  color: #fff;

  font-size: 20px;
  line-height: 32px;
  text-align: center;

  border-radius: 50%;
  cursor: pointer;
}

#popup-close:hover {
  background: #e53935;
}