/* =============================================
   SOUTH SHORE RECOVERY CLUB - join.css
   Page-specific styles (shared styles in ../css/site.css)
   ============================================= */

.form-page-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(44,44,44,0.09);
    max-width: 640px;
    margin: 0 auto;
}

.form-page-wrapper h1 {
    font-size: 1.6rem;
    color: #1e3a52;
    margin-bottom: 1.25rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.form-row label {
    min-width: 180px;
    font-weight: 700;
    color: #2c2c2c;
    padding-top: 0.4rem;
}

.input-text {
    border: 2px solid #d5cfc6;
    border-radius: 6px;
    padding: 0.45rem 0.75rem;
    font-size: 0.97rem;
    transition: border-color 0.18s;
    flex: 1;
    min-width: 200px;
}

.input-text:focus {
    border-color: #2d7b6e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(45,123,110,0.12);
}

.field-value {
    flex: 1;
    min-width: 200px;
}

.thick {
    font-weight: 700;
    color: #c0392b;
}

.btn.btn-primary {
    background-color: #2d7b6e !important;
    border-color: #2d7b6e !important;
    border-radius: 8px;
    padding: 0.6rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    transition: background 0.18s;
}

.btn.btn-primary:hover {
    background-color: #3a9484 !important;
    border-color: #3a9484 !important;
}

.btn.btn-success {
    background-color: #c8864a !important;
    border-color: #c8864a !important;
    border-radius: 8px;
    padding: 0.6rem 2rem;
    font-weight: 700;
}

.btn.btn-success:hover {
    background-color: #e09f65 !important;
    border-color: #e09f65 !important;
}

#testSuccessful {
    background: #e8f8f2;
    border-left: 4px solid #2d7b6e;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    color: #1e3a52;
}

#testFailed {
    background: #fdecea;
    border-left: 4px solid #c0392b;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    color: #c0392b;
}

#DonatePanel { margin-top: 1rem; }
