.form-bg {
    background: url('../assets/images/form-bg.webp') no-repeat center center;
    background-size: cover !important;
}

#register-form-1{
    padding: 50px;
    grid-gap: 50px;
    margin: 0 auto;
    max-width: 992px;
    width: 100%;
    color: #fff;
    overflow: hidden;
}

.form-main-container{
    padding: 70px 0;
    text-align: center;
    font-size: 17px;
    background: #222222;
    color: #fff;
}

.form-sub-container{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    grid-gap: 20px;
}


.form-head{
    color: #0798ff;
    font-weight: 700;
    margin-bottom: 35px;
}

.form-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    grid-gap: 17px;
}

.form-input{
    display: flex;
    flex-direction: row;
    grid-gap: 17px;
    justify-content: flex-start;
}

.input-field{
    width: 100%;
    padding: 5px 10px;
    font-size: 17px;
    border: 1px solid #000;
    border-radius: 4px;
    margin: 0;
}

.sponsors-form-submit-btn{
    background-color: #D2D918 !important;
    color: #000;
    width: 100px;
    font-size: 17px;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    height: auto;
}

.brochure-form-submit-btn{
    background-color: #D2D918 !important;
    color: #000;
    width: 250px;
    font-size: 17px !important;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    height: auto;
}

.form-submit-btn:hover{
    opacity: 0.8;
}

.form-submit-btn{
    width: 100px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #D2D918;
    border: none;
    border-radius: 10px;
}

@media screen and (max-device-width: 992px) {
    #register-form-1{
        padding: 20px 20px;
    }
}

@media screen and (max-device-width: 576px) {
    .form-input{
        flex-direction: column;
    }
}