/*=============================
 Membership Form
==============================*/

.mcs-container{
    max-width:900px;
    margin:40px auto;
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.mcs-title{
    text-align:center;
    font-size:34px;
    font-weight:700;
    color:#9c6b30;
    margin-bottom:30px;
}

.mcs-row{
    margin-bottom:22px;
}

.mcs-row label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
    color:#444;
    font-size:15px;
}

.mcs-row input,
.mcs-row textarea,
.mcs-row select{
    width:100%;
    padding:14px 18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    transition:.3s;
    background:#fff;
    box-sizing:border-box;
}

.mcs-row input:focus,
.mcs-row textarea:focus{
    border-color:#c9a35b;
    box-shadow:0 0 0 3px rgba(201,163,91,.15);
    outline:none;
}

.mcs-row textarea{
    min-height:120px;
    resize:vertical;
}

.mcs-row input[type=file]{
    padding:12px;
}

.mcs-btn{
    width:100%;
    background:linear-gradient(135deg,#c89a4d,#9d6d2f);
    color:#fff;
    border:none;
    padding:16px;
    font-size:17px;
    font-weight:700;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}

.mcs-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 25px rgba(0,0,0,.18);
}

.mcs-success{
    background:#e8f8ed;
    border-left:5px solid #28a745;
    padding:15px;
    margin-bottom:25px;
    border-radius:8px;
    color:#155724;
}

.mcs-error{
    background:#fdecec;
    border-left:5px solid #dc3545;
    padding:15px;
    margin-bottom:25px;
    border-radius:8px;
    color:#721c24;
}

@media(max-width:768px){

.mcs-container{
    padding:20px;
    margin:20px;
}

.mcs-title{
    font-size:28px;
}

}