.form-container {
    margin: 0 20px;
    background: #7e909c;
    padding: 20px 60px;
    border-radius: 30px;
    position: relative;
}

.custom-select {
    border-radius: 35px;
    border: 2px solid #445a7f;
    padding-left: 15px;
}

.custom-form-title {
    font-size: 26px;
    color: #fff;
    font-weight: 400;
    border-bottom: 1px solid #fff;
    width: fit-content;
}

.form-container label {
    color: #fff;
}

.custom-input {
    border-radius: 35px;
    border: 2px solid #445a7f;
    padding-left: 15px;
}

.form-container .custom-btn {
    padding: 15px 30px;
    border-radius: 35px;
    background: #1dadec;
    color: #fff;
    font-weight: 800;
    border: 0;
}


.custom-circle {
    background: #3f9cd7;
    display: block;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
}

.custom-circle.first {
    top: -20px;
    left: 0;
    width: 200px;
    height: 200px;
}

.custom-circle.second {
    width: 300px;
    height: 300px;
    left: -50px;
    bottom: 10px;
}

.custom-circle.third {
    width: 250px;
    height: 250px;
    right: 85px;
    bottom: -68px;
}

.custom-circle.fourth {
    width: 250px;
    height: 250px;
    right: -27px;
    bottom: -34px;
}

.custom-subtitle {
    font-weight: 600;
    border-bottom: 1px solid #000;
    width: fit-content;
}

.custom-sec-btn {
    padding: 15px 30px;
    border-radius: 35px;
    background: #7b919e;
    color: #fff;
    font-weight: 800;
    border: 0;
}

@media screen and (max-width: 768px) {
    .form-container {
        margin: 0px;
        padding: 20px 30px;
    }
}