body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
.connexion-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem;
}
.form-wrapper {
    width: 100%;
    max-width: 480px;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgb(51, 51, 51);
}
.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 1rem;
}
.btn-connexion {
    width: 100%;
    background: #f59e0b;
    color: white;
    text-decoration: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}
.btn-connexion:hover {
    background: #d97706;
    transform: translateY(-1px);
}
.connexion-title {
    color: rgb(51, 51, 51);
    text-align: center;
    margin-bottom: 2rem;
        
}
.signup-link {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    color: rgb(51, 51, 51);
    font-size: 1rem;
    font-weight: 500;
}
.signup-link a {
    color: #f59e0b;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}
.signup-link a:hover {
    color: #d97706;
}
.error {
    color: #dc2626;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9375rem;
}
.success {
    color: #16a34a;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9375rem;
}
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
}
.checkbox-group label {
    margin: 0;
    cursor: pointer;
    font-size: 0.9375rem;
    color: rgb(51, 51, 51);
}
.active a {
    color: orange;
    font-weight: 600;
}