.card-body {
    position: relative;
    padding: 2.25rem;
}

.mainContent {
    padding-top: 20px;
    overflow: hidden;
}

.landing-page-logo {
    width: 18%;
    object-fit: contain !important;
    display: block;
    margin-bottom: 27px;
}

.landing-page-header{
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 576px){
    .landing-page-header {
        display: flex;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center;
        margin-bottom: 20px;
    }

    .landing-page-logo {
        width: 55%;
    }

    @media (max-width: 991px) {
        .mainContent {
            padding-top: 20px !important;
        }
    }
}

.card-body::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 56px solid #6d6357;
    top: -8%;
    left: -22%;
    opacity: 0.1;
}

.card-body::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 56px solid #e07b00;
    bottom: 18%;
    left: 56%;
    opacity: 0.1;
}

.form-control {
    height: 50px;
    font-size: 14px;
    position: relative;
    z-index: 1;
    box-shadow: 3px 5px 4px 0px #817d7d78;
    box-shadow: inset 4px 4px 4px #dfdfdfd1, 4px 3px 5px #afafafc7;
}

.card {
    border-radius: 10px;
    border: 1px solid #ddd;
    position: relative;
    overflow: hidden;
    box-shadow: inset 3px 1px 5px #cdcdcd, 4px 1px 5px #ada9a93d;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #616161;
}

.form-group label {
    font-weight: bold;
    color: #616161;
    font-size: 14px;
}

.form-control:focus {
    box-shadow: -1px 0px 4px 3px rgba(163, 158, 158, 0.34);
}

::placeholder {
    color: #999;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.form-control:focus::placeholder {
    opacity: 0.5;
}

.btn-custom {
    background-color: #ff930a;
    border-color: #ff930a;
    color: #fff;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.btn-custom:hover {
    background-color: #e07b00;
    transform: scale(1.05);
}

.form-container::before, .form-container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 147, 10, 0.5);
    animation: float 3s ease-in-out infinite;
    z-index: -1;
}

.form-container::before {
    width: 150px;
    height: 150px;
    top: 93%;
    right: -5%;
    background: #7fffd445;
}

.form-container::after {
    width: 200px;
    height: 200px;
    bottom: 29%;
    left: -6%;
    background: #0000ff17;
    z-index: 0;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}

.form-img {
    position: absolute;
    bottom: 23%;
    left: 110.3%;
    z-index: 2;
    width: 75%;
}
.form-content {
    margin-top: 0%;
}

.form-content h2 {
    font-size: 24px;
    background: #ff930a;
    padding: 11px;
    display: flex;
    justify-content: center;
    color: white;
    position: relative;
}

.form-content p {
    padding: 19px;
    border: 1px solid gainsboro;
    font-size: 14px;
    line-height: 23px;
}

.form-content h2::after {
    content: '';
width: 30px;
    height: 30px;
    background-color: #ff930a;
    top: 11px;
    right: -7px;
    position: absolute;
    z-index: -1;
    transform: rotate(45deg);
}
.form-content h3 {
       font-size: 27px;
    background: #455a64;
    padding: 11px;
    display: flex;
    justify-content: center;
    color: white;
    position: relative;
}
.form-content h3::after {
    content: '';
    width: 30px;
    height: 30px;
    background-color: #455a64;
    top: 8px;
    right: -7px;
    z-index: -1;
    position: absolute;
    transform: rotate(45deg);
}

@media only screen and (max-width: 992px){
    .form-img{
        display: none;
    } 

    .form-content {
        margin-top: 0% !important;
        text-align: center;
    }

    .form-content h2::after {
        display: none;
    }
}