.form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
    background: none; 
}
.form-control:active, .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #000; 
}

.col-form-label {
    color: #000;
    font-size: 13px; 
}

#submit-btn:disabled {
    cursor: not-allowed;
    color: white;
    background-color: #b3b3b3;
}

/* .btn, .form-control, .custom-select {
    height: 45px;
    border-radius: 5px;
} */

.custom-select {
    border: none;
    border-bottom: 1px solid #ccc;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0; 
    font-family: inherit;
}
.custom-select:active, .custom-select:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #000;
}

.btn {
    border: none;
    font-size: 11px;
    letter-spacing: .2rem;
    text-transform: uppercase;
}
.btn.btn-primary {
    cursor: pointer;
    padding: 8px 40px;
    border-radius: 16px;
    background-color: #ffbe22;
    transform: scale(1);
    font-size: 1.2rem;
    color: rgb(0, 0, 0);
    font-weight: 700;
    line-height: initial;
    text-align: initial;
    transition-property: color;
    transition-duration: 0.23s;
    transition-timing-function: ease;
    transition-property: color, transform;
    transition-duration: 0.23s;
    transition-timing-function: ease;
    font-family: inherit;
    letter-spacing: 0;
}
.btn:hover {
    color: #fff; 
}
.btn:active, .btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none; 
}

.contact-wrap {
    -webkit-box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #efefef; 
    /* margin-bottom: 10px; */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;
}

@media (max-width: 768px) {
    .contact-wrap {
        width: 100%; 
        margin-bottom: 0px;
    }
}
.contact-wrap .col-form-label {
    font-size: 14px;
    color: #b3b3b3;
    margin: 0 0 10px 0;
    display: inline-block;
    padding: 0; 
}

.contact-wrap .form {
    background: #fff; 
}
.contact-wrap .form h3 {
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px; 
}

#message {
resize: vertical; 
}

#form-message-warning, #form-message-success {
display: none; 
}

#form-message-warning {
color: #B90B0B; 
font-size: 18px;
font-weight: bold; 
}

#form-message-success {
color: #55A44E;
font-size: 18px;
font-weight: bold; 
}

.submitting {
float: left;
width: 100%;
padding: 10px 0;
display: none;
font-weight: bold;
font-size: 12px;
color: #000; 
}

.div-contact-form {
width: 50%; 
background-color: white; 
padding: 20px; 
margin: 20px;
border-radius: 10px; 
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); 
}

.div-contact-form h3 {
    word-spacing: -5;
}

@media (max-width: 768px) {
.div-contact-form {
    width: 100%; 
}
}

.div-form-h-100 {
height: 100%; /* Full height within the parent */
}