/* Onglets */
.tabs-container {
    background: #f7f7f7;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 0.3rem 0.5rem;
    margin-bottom: 1.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    background: none;
    border: none;
    outline: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.1rem;
    color: #888;
    padding: 0.7rem 2.2rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin: 0 0.2rem;
}

.tab-btn.active {
    background: #fff;
    color: #222;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border: 1px solid #e0e0e0;
}

.tab-btn:hover:not(.active) {
    background: #ececec;
    color: #444;
}

/* Bloc connexion */
.bloc-connexion {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    max-width: 400px;
    margin: 0 auto 2rem auto;
    border: 1px solid #f0f0f0;
}

.form-connexion .form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    font-family: 'Montserrat', Arial, sans-serif;
}

.form-input {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 1rem;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fafafa;
    transition: border 0.2s;
}

.form-input:focus {
    border-color: #b6a2f8;
    outline: none;
    background: #fff;
}

.password-input-container {
    display: flex;
    align-items: center;
}

.password-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    margin-left: 0.5rem;
    cursor: pointer;
    color: #888;
    transition: color 0.2s;
}

.password-toggle:hover {
    color: #b6a2f8;
}

.btn-entrer {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #b6a2f8 0%, #7f6bff 100%);
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    border-radius: 2rem;
    padding: 0.8rem 2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.2s;
    margin-top: 1rem;
}

.btn-entrer:hover {
    background: linear-gradient(90deg, #7f6bff 0%, #b6a2f8 100%);
}

.arrow {
    margin-left: 0.7rem;
    font-size: 1.2rem;
}

.login-error {
    color: #d32f2f;
    font-size: 0.95rem;
    margin-top: 0.7rem;
    text-align: center;
    display: block;
}

.connexion-footer {
    margin-top: 1rem;
    text-align: center;
}

.connexion-link {
    color: #7f6bff;
    text-decoration: underline;
    font-size: 0.98rem;
    transition: color 0.2s;
}

.connexion-link:hover {
    color: #b6a2f8;
}
