.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-container {
    width: 100%;
    max-width: 480px;
}

.auth-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 1rem;
}

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

.auth-header .logo {
    display: block;
    margin-bottom: 1.5rem;
}

.auth-header .logo img {
    height: 48px;
    width: auto;
}

.auth-header h1 {
    color: #2d3748;
    font-size: 1.5rem;
    margin: 0;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-weight: 500;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"],
.auth-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.2s;
}

.auth-form input:focus,
.auth-form textarea:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
    outline: none;
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #718096;
    cursor: pointer;
    padding: 0.25rem;
}

.password-requirements {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #718096;
}

.remember-me {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remember-me label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    cursor: pointer;
}

.forgot-password {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.875rem;
}

.forgot-password:hover {
    color: #2d3748;
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid #4299e1;
    color: #4299e1;
}

.btn-outline:hover {
    background: #4299e1;
    color: white;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.auth-footer p {
    margin-bottom: 1rem;
    color: #718096;
}

.alert {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.alert-danger {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #feb2b2;
}

.alert-success {
    background: #f0fff4;
    color: #2f855a;
    border: 1px solid #9ae6b4;
}

.terms {
    font-size: 0.875rem;
    color: #4a5568;
}

.terms a {
    color: #4299e1;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

/* Styles pour les icônes dans les champs */
.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
}

.input-group input {
    padding-left: 2.5rem;
}

/* Styles pour les petits textes d'aide */
.form-text {
    font-size: 0.875rem;
    color: #718096;
    margin-top: 0.5rem;
}

/* Styles pour les liens */
.back-to-login {
    color: #4a5568;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-to-login:hover {
    color: #2d3748;
}

/* Responsive */
@media (max-width: 480px) {
    .auth-box {
        padding: 1.5rem;
    }

    .auth-header .logo img {
        height: 40px;
    }

    .auth-header h1 {
        font-size: 1.25rem;
    }
}