/* Bloc inscription */
.register-box {
    background: #f9fdfc;
    border: 2px dashed #076E66;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Bouton inscription */
.btn-register {
    display: inline-block;
    background-color: #076E66;
    color: #fff;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background-color: #054f48;
    transform: scale(1.05);
    text-decoration: none;
    color: #fff;
}