body {
    font-family: 'Roboto', system-ui, sans-serif;
    background: linear-gradient(135deg, #dbdbdb 0%, #e0f2fe 100%);

}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: modalFadeIn 0.3s ease;
}

.modal-header {
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #1E40AF;
    align-items: center;
}

.close {
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #1E40AF;
}

.modal-body {
    padding: 20px;
}

.register-choices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.modal-content h2{
    color: #1E40AF;
     font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.btn-send-raeson{
    padding: 12px 28px;
    background: #1E40AF;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-group {
    margin-bottom: 24px;
}


.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    color: var(--gray-900);
    background: var(--white);
    transition: var(--transition);
}

.form-control:hover {
    border-color: var(--gray-300);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}



.register-choice {
    padding: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.register-choice:hover {
    border-color: #1E40AF;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.register-choice i {
    font-size: 2rem;
    color: #1E40AF;
    margin-bottom: 10px;
}

.register-choice h3 {
    margin: 10px 0;
    color: #1E40AF;
}

.register-choice p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



 .password-container {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
        }

        /* Champ mot de passe */
        .password-container input {
            width: 100%;
            padding: 10px;
            padding-right: 40px;
            /* Pour laisser de l'espace au bouton 👁 */
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }

        /* Bouton œil (👁) */
        .toggle-password {
            position: absolute;
            right: 10px;
            cursor: pointer;
            font-size: 18px;
            color: #666;
        }

        .toggle-password:hover {
            color: #000;
        }
