/* ===========================
   PetandMe Community Form
=========================== */

.community-form-wrapper{
    max-width:900px;
    margin:60px auto;
}

.community-form-wrapper h2{
    font-size:42px;
    margin-bottom:15px;
    color:#ffffff;
    font-weight:700;
}

.community-form-wrapper p{
    color:#bdbdbd;
    margin-bottom:40px;
    font-size:17px;
    line-height:1.7;
}

.community-form{
    width:100%;
}

.form-row{
    display:flex;
    gap:25px;
    margin-bottom:25px;
}

.form-group{
    flex:1;
    display:flex;
    flex-direction:column;
}

.form-group label{
    margin-bottom:10px;
    font-size:15px;
    color:#000000;
    font-weight:600;
}

.required{
    color:#ff5b5b;
}

.form-group input{

    width:100%;
    padding:16px 18px;

    background:#000;

    border:1px solid #333;

    border-radius:10px;

    color:#fff;

    font-size:15px;

    transition:.3s ease;

    box-sizing:border-box;

}

.form-group input::placeholder{

    color:#7f7f7f;

}

.form-group input:focus{

    outline:none;

    border-color:#F7B500;

    box-shadow:0 0 12px rgba(247,181,0,.25);

}

.form-submit{

    margin-top:35px;

}

.btn-primary{

    display:inline-block;

    background:#F7B500;

    color:#111;

    font-size:16px;

    font-weight:700;

    padding:16px 40px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    transition:.3s ease;

}

.btn-primary:hover{

    transform:translateY(-2px);

    background:#ffca28;

    box-shadow:0 8px 20px rgba(247,181,0,.35);

}

@media (max-width:768px){

    .form-row{

        flex-direction:column;

        gap:18px;

    }

    .community-form-wrapper h2{

        font-size:32px;

    }

}