.blue-background {
    background-image: url('/Portals/0/Blue-stripe.jpg'); /* Use your image path here */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 200px; /* Adjust height as needed */
    position: relative;
    top:190px;
}
/* Centered form container on top of the blue background */
.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto; /* Centers and positions the form overlapping */
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    text-align: center;
    position: relative;
    z-index: 1;
    bottom:150px;
}


.contact-form-container {
    max-width: 800px;
    margin: -100px auto 50px; /* Centers and positions the form overlapping */
    background-color: #ffffff;
    padding: 40px 80px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    justify-content: space-between;
}

.form-controlc {
    border: 1px solid #474747; /* Adjusted border color to match the design */
    border-radius: 15px; /* Makes the input fields fully rounded */
    padding: 10px 15px;
    font-size: 1rem;
    box-shadow: none;
    transition: border-color 0.3s ease; /* Smooth transition on focus */
    width:100%;
}
.cntbtn {
    text-align: left;
}
.form-controlc:focus {
    border-color: #3b4edb;
    box-shadow: none;
}

.btn-contact {
    background-color: #fec33e;
    color: #fff;
    border-radius: 20px;
    padding: 10px 30px;
    font-weight: bold;
    border: none;
}

.btn-contact:hover {
    background-color: #fec33e;
    color: #fff;
}