.cube-adherent-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cube-adherent-form .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.cube-adherent-form label {
    color: #000;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.cube-adherent-form input[type="text"],
.cube-adherent-form input[type="email"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.cube-adherent-form input[type="checkbox"] {
    margin-right: 10px;
}

.cube-adherent-form .submit-button {
    background: #0073aa;
    color: #fff;
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: fit-content;
    align-self: flex-end;
    font-weight: 600;
}

.cube-adherent-form .submit-button:hover {
    background: #005177;
}

.cube-adherent-form .submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

#form-message.success {
    background: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

#form-message.error {
    background: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

#email-confirmation {
    margin: 15px 0;
    padding: 10px;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 4px;
}

.hidden {
    display: none;
}

span.required {
    color: #ff0000;
}