/* Style général pour la page */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

/* Fond de la page */
.background {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('../images/Background-register.svg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 2rem;
}

/* Conteneur du choix utilisateur */
.user-choice {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
}

/* Titre */
.title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Boutons */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-choice {
    display: inline-block;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-choice.pharmacy {
    background-color: #00666C;
}

.btn-choice.pharmacy:hover {
    color: #fff;
}


.btn-choice.had {
    background-color: #FFCE4C;
    color: #00666C;
}

/* Effets interactifs */
.btn-choice:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
