*{
    box-sizing:border-box;
}

body{
    margin:0;
    padding:0;
    background:#f1f1f1;
    font-family:Arial,sans-serif;
    color:#444;
}

.membership-container{
    max-width:1200px;
    margin:30px auto;
    padding:0 20px 60px;
}

h1{
    font-size:45px;
    font-weight:800;
    color:#1f4d2f;
    margin:0 0 10px;
    text-transform:uppercase;
}

.subtitle{
    font-size:14px;
    color:#666;
    margin-bottom:35px;
}

.section-title{
    font-size:26px;
    font-weight:800;
    text-transform:uppercase;
    color:#444;
    margin-top:40px;
    margin-bottom:8px;
    padding-top:14px;
    border-top:3px solid #1f4d2f;
}

.section-description{
    color:#666;
    font-size:14px;
    margin-bottom:20px;
}

.success-message,
.error-message{
    display:none;
    padding:22px;
    border-radius:8px;
    margin-bottom:30px;
    line-height:1.7;
}

.success-message{
    background:#dff0d8;
    color:#2f6627;
}

.error-message{
    background:#ffd7d7;
    color:#9c0000;
}

.required{
    color:#d50000;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group.full{
    grid-column:1 / -1;
}

.form-group label{
    font-size:16px;
    font-weight:700;
    color:#666;
    margin-bottom:8px;
}

input,
textarea,
select{
    width:100%;
    padding:14px;
    border:1px solid #bdbdbd;
    background:#f8f8f8;
    border-radius:8px;
    font-size:15px;
    color:#444;
}

textarea{
    min-height:140px;
    resize:vertical;
}

.documents-helper{
    font-size:13px;
    color:#666;
    margin-bottom:20px;
    line-height:1.6;
}

.submit-btn{
    margin-top:35px;
    background:#1f6d47;
    color:#fff;
    border:none;
    padding:18px 40px;
    font-size:18px;
    font-weight:700;
    border-radius:4px;
    cursor:pointer;
}

.submit-btn:hover{
    background:#165437;
}

.submit-btn:disabled{
    opacity:0.7;
    cursor:not-allowed;
}

@media(max-width:768px){

    .membership-container{
        padding:0 15px 40px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    h1{
        font-size:32px;
    }

    .section-title{
        font-size:22px;
    }

    .submit-btn{
        width:100%;
    }

}