:root {
    --primary-color: #0052B4; /* Azul FIFA */
    --secondary-color: #ffd700; /* Dorado trofeo */
    --accent-color: #e91e63;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
}

body {
    margin: 0;
    padding: 0;    
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #020024 0%, #090979 35%, #00d4ff 100%);
    overflow: hidden;
}

.techc-form-input:not(:placeholder-shown) {
  text-transform: uppercase;
}

.img-thumbnail {    
    max-width: 9.5rem !important;
    height: 11.5rem !important;
}

.auth-container {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px var(--fifa-gold) solid !important;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    width: 100%;
    max-width: 400px;
    text-align: center;
    opacity: 0.9;
}

.auth-header h1 {
    color: var(--text-light);
    letter-spacing: 2px;
    margin-bottom: 0;
}

.auth-header h1 span {
    color: var(--secondary-color);
}

.auth-header p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.password-container {
    position: relative;
    display: flex;
    align-items: center;
}

.toggle-btn {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding-top: 0.675rem;
    color: #0052B4;
    /* Evita que el botón "salte" al hacer click */
    outline: none;
}
.toggle-btn:hover {
    color: var(--fifa-gold); /* Dorado al pasar el mouse */
}

/* Ajuste para que el texto no se encime con el ojo */
.password-container input {
    padding-right: 40px; 
}

h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.input-group {
    margin-bottom: 1.2rem;
}

.input-group input {
    width: 85%;
    padding: 12px 15px;    
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
    border: none;
    background: rgba(255, 255, 255, 0.9);    
    box-sizing: border-box;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: var(--secondary-color);
    color: #000;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    margin-top: 1rem;
}

.btn-primary:hover {
    background-color: #f1c40f;
    transform: translateY(-2px);
}

.toggle-text {
    color: #ddd;
    font-size: 0.85rem;
    margin-top: 1.5rem;
}

.toggle-text a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.hidden {
    display: none;
}
/********************************************************MEDIA QUERY´S********************************************************/
@media (max-width: 576px) {    
    .auth-container {
        margin: 0.5rem !important;
        padding: 1.2rem !important;
    }
}
@media (min-width: 577px) and (max-width: 767px) {
    .auth-container {
        margin: 0.5rem !important;
        padding: 1.2rem !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
         
}
@media (min-width: 992px) and (max-width: 1199px) {
    
}
@media (min-width: 1200px) and (max-width: 1399px) {
    
}
@media (min-width: 1400px) {
    
}
/*****************************************************************************************************************************/