.rds-form-wrapper-4ed24ca1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.rds-form-field-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.rds-label {
    font-weight: 600;
    font-size: 14px;
}
.rds-label .required {
    color: #d9534f;
    margin-left: 3px;
}
.rds-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
.rds-submit-btn {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.2s, color 0.2s;
}
.rds-submit-btn:hover {
    background-color: #005177;
}
.rds-form-message {
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 10px;
}
.rds-form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.rds-form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Privacy Policy Acceptance CSS */
.rds-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}
.rds-checkbox-input {
    width: auto;
    margin: 0;
    cursor: pointer;
}
.rds-checkbox-text {
    line-height: 1.4;
}
.rds-privacy-link {
    color: #0073aa;
    text-decoration: underline;
}
.rds-privacy-link:hover {
    color: #005177;
}
