.form-floating-contact {
    position: relative;
    margin-bottom: 1rem;
}

.form-control {
    color: #ffffff;
    background: rgb(43, 42, 41);
    border-color: rgb(220, 174, 107) !important;
    border-radius: 0.375rem; /* Adjust if needed */
    height: 3rem; 
}

.form-floating-contact label {
    color: #ffffff;
    border-color: rgb(220, 174, 107);
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.5rem 0.75rem;
    pointer-events: none;
    transition: all 0.2s ease-out;
}

.form-floating-contact .form-control:focus ~ label,
.form-floating-contact .form-control:not(:placeholder-shown) ~ label {
    top: -0.65rem;
    left: 0.75rem;
    font-size: 1rem;
    color: rgb(220, 174, 107);
    /* opacity: 0.5; */
    padding-top:0;
    padding-bottom:3px;
    background: rgb(43, 42, 41);
}

