.msa-verification-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}
.msa-verification-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}
.msa-verification-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.msa-verification-form input[type="submit"] {
    background: #3aa6b9;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.msa-verification-form input[type="submit"]:hover {
    background: #3aa6b9;#3aa6b9
}
.msa-verification-form .msa-error {
    color: #d63638;
    margin-bottom: 10px;
    padding: 10px;
    background: #ffe6e6;
    border-left: 4px solid #d63638;
    border-radius: 4px;
}
.msa-verification-form .msa-success {
    color: #46b450;
    margin-bottom: 10px;
    padding: 10px;
    background: #e6ffe6;
    border-left: 4px solid #46b450;
    border-radius: 4px;
}