/* Main Form Container */
.msr-form {
    max-width: 520px;
    margin: 40px auto;
    padding: 32px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    font-family: "Segoe UI", system-ui, sans-serif;
}

/* Headings */
.msr-form h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
}

.msr-form h3:not(:first-child) {
    margin-top: 35px;
}

/* Inputs & Select */
.msr-form input:not([type="radio"]),
.msr-form select {
    width: 100%;
    height: 44px;
    padding: 10px 14px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    box-sizing: border-box;
}

.msr-form input:focus,
.msr-form select:focus {
    outline: none;
    border-color: #0090CD;
}

/* Labels */
.msr-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

/* Radio Groups */
.form-row {
    margin-bottom: 20px;
}

.radio-options {
    display: flex;
    gap: 25px;
}

.radio-options label {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Submit Button */
.msr-form input[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, #0090CD, #6C72E2);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.msr-form input[type="submit"]:hover {
    opacity: 0.9;
}

/* Success & Error Messages */
.msr-success {
    max-width: 520px;
    margin: 20px auto;
    padding: 14px;
    background: #e6fffa;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #065f46;
}

.msr-error {
    max-width: 520px;
    margin: 20px auto;
    padding: 14px;
    background: #fee2e2;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #991b1b;
}

/* Mobile */
@media (max-width: 650px) {

    .radio-options {
        flex-direction: column;
        gap: 12px;
    }
}
.msr-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.msr-form input,
.msr-form select {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
}

.msr-success {
    text-align: center;
    color: green;
    margin-bottom: 15px;
}

.msr-error {
    text-align: center;
    color: red;
    margin-bottom: 15px;
}
