/* Moseley Rugby - 300 Club Subscription Form */

.mrss-wrap {
    margin: 0 auto;
    font-family: inherit;
    color: inherit;
}

.mrss-form-title {
    font-size: 1.5em;
    margin: 0 0 8px;
}

.mrss-form-desc {
    margin: 0 0 24px;
    color: #555;
    line-height: 1.6;
}

/* Notice box */
.mrss-notice {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.95em;
    line-height: 1.5;
}
.mrss-notice.mrss-error {
    background: #fde8e8;
    border-left: 4px solid #c0392b;
    color: #7b1d1d;
}
.mrss-notice.mrss-success {
    background: #e6f4ea;
    border-left: 4px solid #27ae60;
    color: #1b4332;
}

/* Form layout */
.mrss-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mrss-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mrss-field label {
font-family: "Bebas Neue", Sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.5rem;
    letter-spacing: 1px;
}


.mrss-req {
    color: #c0392b;
    margin-left: 2px;
}

/* Text inputs */
.mrss-field input[type="text"],
.mrss-field input[type="email"],
.mrss-field input[type="date"] {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
  font-family: "Bebas Neue", Sans-serif;
    box-sizing: border-box;
background-color: #D9D9D9;
    color: #222;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-style: normal;
    font-weight: 400;
        letter-spacing: 0.5px;
}
#mrss-submit{
    border:0;
   font-size: 1.4em;
}
#mrss-submit:hover{
    background-color: #4D6CFA;
 color:black;
}

.mrss-field input[type="text"]:focus,
.mrss-field input[type="email"]:focus,
.mrss-field input[type="date"]:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

/* Plan cards */
.mrss-plans {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.mrss-plan-option {
    flex: 1;
    min-width: 150px;
    cursor: pointer;
}

.mrss-plan-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.mrss-plan-card {
    display: block;
    padding: 18px 14px;
    border: 2px solid #ccc;
    border-radius: 6px;
    text-align: center;
    background: #fff;
    color: #333;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.mrss-plan-option input[type="radio"]:checked + .mrss-plan-card {
    border-color: #0073aa;
    background: #f0f7fb;
    color: #0073aa;
}

.mrss-plan-card:hover {
    border-color: #999;
}

.mrss-plan-card strong {
    display: block;
    font-size: 1em;
    font-weight: 700;
}

/* Submit button */
.mrss-btn {
    display: inline-block;
    padding: 13px 32px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
    width: 100%;
}

.mrss-btn:hover {
    background: #005a87;
}

.mrss-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .mrss-plans {
        flex-direction: column;
    }
    .mrss-plan-option {
        min-width: unset;
    }
}
