/* Estilos específicos para las páginas de autenticación */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    padding: 20px;
}

.auth-box {
    width: 100%;
    max-width: 450px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 40px;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.auth-title {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.auth-subtitle {
    color: #7f8c8d;
    font-size: 1rem;
}

.auth-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    color: #7f8c8d;
    font-size: 1.1rem;
}

.input-with-icon .toggle-password {
    left: auto;
    right: 15px;
    cursor: pointer;
}

.auth-form .form-control {
    padding-left: 45px;
    padding-right: 45px;
    height: 50px;
    border: 2px solid #ecf0f1;
    transition: all 0.3s;
}

.auth-form .form-control:focus {
    border-color: #3498db;
    box-shadow: none;
}

.btn-primary {
    background-color: #3498db;
    color: white;
    border: none;
    height: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.auth-links {
    margin-top: 20px;
    text-align: center;
}

.auth-links a {
    color: #7f8c8d;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.auth-links a:hover {
    color: #3498db;
}

.auth-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: #7f8c8d;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
}

/* Estilos para roles específicos */
.role-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.role-tab {
    padding: 8px 20px;
    background: #ecf0f1;
    color: #7f8c8d;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.role-tab.active {
    background: #3498db;
    color: white;
}

/* Responsive */
@media (max-width: 576px) {
    .auth-box {
        padding: 30px 20px;
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
}

