/* Contenedor principal del login */
.auth-wrapper {
    display: flex;
    justify-content: center;   
    align-items: center;       
    min-height: 100vh;        
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    margin: 0 auto;
}

/* Header del login */
.auth-header {
    text-align: center;
    margin-bottom: 1.5rem; /* reducido de 3rem a 1.5rem */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* Contenedor del logo */
.auth-logo {
    margin-bottom: 1rem; /* reducido de 2rem a 1rem */
    width: 100%;
}

/* Imagen del logo */
.auth-logo img {
    max-width: 360px; /* aumentado de 300px a 360px */
    max-height: 260px; /* aumentado de 220px a 260px */
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover removed for auth logo */
.auth-logo img:hover {
    /* transform: scale(1.05); - hover effect removed as requested */
}

.auth-options{
    display: flex;
    flex-direction: column;
    margin-top: 1rem; 
    gap: 1rem;  
}

/* Tablet pequeño: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .auth-container {
        padding: 1rem;
    }

    .auth-title {
        font-size: 2.4rem;
    }

    .auth-logo img {
        max-width: 140px; /* aumentado de 100px a 140px para tablets pequeños */
        max-height: 90px; /* aumentado de 70px a 90px */
    }

    .auth-logo-placeholder {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    .auth-options{
        flex-direction: row;
        gap: 1rem;
    }
}

/* Ajustes para móviles: reducir margen inferior del header */
@media (max-width: 767px) {
    .auth-header {
        margin-bottom: 1rem;
    }
    .auth-container {
        padding: 1rem; /* ya existe en el archivo, pero reforzamos si es necesario */
    }
    /* Ajuste del tamaño del logo en móviles */
    .auth-logo img {
        max-width: 160px; /* reducir tamaño en móviles */
        max-height: 120px;
    }
}

/* Tablet grande: 1024px - 1279px */
@media (min-width: 1024px) and (max-width: 1279px) {
    .auth-container {
        max-width: 500px;
    }

    .auth-logo img {
        max-width: 270px; /* reducido de 420px a 380px */
        max-height: 240px; /* reducido de 300px a 280px */
    }
}

/* Desktop: 1280px+ */
@media (min-width: 1280px) {
    .auth-container {
        max-width: 550px;
    }

    .auth-logo img {
        max-width: 480px; /* aumentado de 400px a 480px */
        max-height: 320px; /* aumentado de 280px a 320px */
    }
}