
.contact-banner {
    width: 100%;
    min-height: 100vh;
    background: url(../images/banner1.png) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 90rem;
    box-sizing: border-box;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* width: 100%; */
}

.contact-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-left img {
    max-width: 80%;
    height: auto;
}

.contact-form-card {
    width: 636rem;
    background: #fff;
    border-radius: 12rem;
    padding: 40rem 60rem;
}

.contact-title {
    text-align: center;
    margin-bottom: 20rem;
}

.contact-title h2 {
    font-size: 24rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 20rem;
    position: relative;
}

.contact-title h2::after {
    content: '';
    position: absolute;
    bottom: -8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 94rem;
    height: 6rem;
    background: #4086FF;
}

.contact-title p {
    font-size: 14rem;
    color: #999;
}

.form-group {
    margin-bottom: 16rem;
}

.form-group label {
    display: block;
    font-size: 16rem;
    color: #000;
    margin-bottom: 8rem;
}

.form-group label span {
    font-size: 18rem;
    color: #ff4d4f;
}

.form-control {
    width: 100%;
    height: 50rem;
    border: 1px solid #e8e8e8;
    border-radius: 4rem;
    padding: 0 15rem;
    font-size: 14rem;
    color: #333;
    background: #fff;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #4086FF;
    box-shadow: 0 0 0 2rem rgba(64, 134, 255, 0.2);
}

.form-control::placeholder {
    color: #ccc;
}


.submit-btn {
    width: 100%;
    height: 50rem;
    background: linear-gradient( 90deg, #4086FF 0%, #0047C0 100%);
    color: #fff;
    border: none;
    border-radius: 4rem;
    font-size: 16rem;
    cursor: pointer;
    transition: all 0.3s;
}

@media screen and (max-width: 800px) {
    .contact-container {
        flex-direction: column;
    }
}