
#section-1 {
    background-image: url('../img/Home_Course_BG.png');
    background-size: contain;
    background-repeat: repeat;
}

h3.main-title {
    font-weight: 600;
    font-size: 34px;    
    line-height: 50px;
}

.form-container {
    margin: auto;
    width: 50%;
    padding: 40px 50px;
    background: #1f1f1f;
}

.form-container input, .form-container textarea {
    background: #1f1f1f;
    border: 1px solid rgba(103, 103, 103, 1);
    border-radius: 0;
    color: #C7C7C7;
}
.form-container button.border-gold-gradient {
    border-width: 1.5px;
    border-radius: 0!important;
    
}

.form-container input[type="submit"] {
    border: 5px solid;
    border-image-slice: 1;
    border-width: 1px;
    border-image-source: linear-gradient(to left, #F5D275, #C99544);
}

.form-container .text-gold-gradient {
    background-color: #C99544;
    background-image: linear-gradient(90deg, #C99544 0%, #F5D275 100%);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

@media (max-width: 1260px) {
    .form-container {
        width: 70%;
    }
    h3.main-title {
        font-size: 30px;
    }
}


@media (max-width: 767px) {
    .form-container {
        width: 100%;
        padding: 30px 30px;
    }
    h3.main-title {
        font-size: 28px;
    }
    
}