﻿#ContactUsContainer {
    background-color: #fff;
    color: #3c090e;
}

.ContactInfoContainer {
    background-color: #3c090efa;
    font-size: clamp(16px,3vw,20px);
    color: #fff;
}
.user-input-wrp input:not(:focus):valid ~ .floating-label {
    top: 0px;
    left: 0px;
    font-size: 1rem;
    opacity: 1;
    color: #3c090e;
}
.ContactEmail {
    color: #fff;
}

.inputText {
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1px solid #ADADAD;
    background: none;
    color: #5f5f5f;
}

.user-input-wrp {
    position: relative;
    margin-bottom: 8px;
}

    .user-input-wrp span.floating-label {
        position: absolute;
        left: 1px;
        top: 23px;
        color: #000;
        font-size: 1.1rem;
        pointer-events: none;
        transition: 0.2s ease all;
        font-family: Montserrat-Regular;
    }

    .user-input-wrp input:focus ~ .floating-label {
        top: 0px;
        left: 0px;
        font-size: 1rem;
        opacity: 1;
        color: #3c090e;
    }

#ContactUsHeading {
    font-family: Montserrat-SemiBold;
    color: #3c090e;
}

.custom-button-reverse {
    background-color: #3c090e;
    border-radius: 7px;
    border: 1px solid #3c090e;
    padding: 8px 10px;
    color: #fad65c;
}

    .custom-button-reverse:hover {
        background-color: #fad65c;
        border-radius: 7px;
        border: 1px solid #3c090e;
        transition: 0.3s ease-in-out;
        color: #3c090e;
    }

.custom-button {
    background-color: #3c090e;
    border-radius: 7px;
    border: 1px solid #3c090e;
    padding: 8px 10px;
    color: #fad65c;
}

    .custom-button:hover {
        background-color: #fad65c;
        border-radius: 7px;
        border: 1px solid #3c090e;
        transition: 0.3s ease-in-out;
        color: #3c090e;
    }
