.ms-graph-form .form-group {
    margin-bottom: 20px;
}
.ms-graph-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
}
.ms-graph-form .required {
    color: #d9534f;
    margin-left: 4px;
}
.ms-graph-form input[type="email"],
.ms-graph-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}
.ms-graph-form input[type="email"]:focus,
.ms-graph-form textarea:focus {
    border-color: #0073aa;
    outline: none;
}
.ms-graph-form .button {
    background-color: #15a60c;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}
.ms-graph-form .button:disabled {
    background-color: #999;
    cursor: not-allowed;
}
/* Style for reCAPTCHA widget spacing */
.ms-graph-form .g-recaptcha {
    margin-bottom: 20px;
}
.ms-graph-form .form-response {
    margin-top: 15px;
    padding: 15px;
    border-radius: 4px;
    display: none;
}
.ms-graph-form .form-response.success {
    display: block;
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}
.ms-graph-form .form-response.error {
    display: block;
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}