/* Estilos para páginas de autenticación - Sin efectos de hover con movimiento */
.auth-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Tarjeta principal */
.auth-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Sin efectos hover en la tarjeta */

/* Cabecera */
.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Icono con gradiente */
.auth-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #4CAF50, #009688);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Títulos */
.auth-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #666;
    font-size: 1rem;
}

/* Grupos de entrada */
.auth-container .input-group {
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.auth-container .input-group-text {
    background-color: #f8f9fa;
    border: none;
    color: #6c757d;
    padding-left: 15px;
    padding-right: 15px;
}

.auth-container .form-control {
    border: none;
    padding: 12px 15px;
    font-size: 1rem;
}

.auth-container .form-control:focus {
    box-shadow: none;
    border-color: transparent;
    background-color: #f9f9f9;
}

.auth-container .form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

/* Botón de envío */
.auth-btn {
    padding: 12px;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    background: linear-gradient(45deg, #4CAF50, #009688);
    border: none;
    color: white;
}

/* Sin efecto de elevación en hover */
.auth-btn:hover {
    background: linear-gradient(45deg, #43A047, #00897B);
}

/* Enlaces */
.auth-links {
    margin-top: 1.5rem;
    text-align: center;
}

.auth-links a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
}

.auth-links a:hover {
    color: #009688;
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #6c757d;
}

.back-link:hover {
    color: #495057;
}

/* Otros elementos */
.auth-container .form-check-input:checked {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.auth-container .alert {
    border-radius: 8px;
    border: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}
