/* ------- Contact Us Page ------- */
.contact-page-container{
    width: 90vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

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

.contact-qr img {
    width: 40vw;
}

.contact-left-title h1{
    font-weight: 600;
    color:#EBF8FF;
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title h1::after {
    content: "";
    display: block;
    width: 100%;
    bottom: -0.25rem;
    height: 0.2rem;
    background: linear-gradient(90deg, #EF97B4, #8BCCEC);
    border-radius: 2rem;
    margin-top: 0.3rem;
}
.contact-left-title hr{
    border: none;
    border-radius: 2rem;
    height: 0.3rem;
    background-color:#EF97B4;
    margin-bottom: 2rem;
}

.contact-inputs{
    width: 35vw;
    height: 4rem;
    border: none;
    outline: none; 
    padding-left: 25px; 
    font-weight: 500;
    border-radius: 2rem;
}

/* Styling for message box. */
.contact-left textarea{
height: 140px;
padding-top: 15px;
border-radius: 20px;
border-bottom-right-radius: 0%;
resize:vertical;
}

.contact-inputs:focus{
    border: 2px solid #EF97B4;
}

.contact-left button{
    display: flex;
    align-items: center;
    padding: 0 0 0 1rem;
    font-size: 18px;
    color: #EBF8FF;
    background-color: #000000;
    cursor: pointer;
    border: 1.5px solid #EBF8FF;
    border-radius: 2rem;
    transition: 0.3s;
}
.contact-left button a {
    font-size: 2.3rem;
    padding: 0.5rem;
    color: #EF97B4;
    transition: 0.3s;
}
.contact-left button:hover{
    color: #000000;
    border-color: #000000;
    background-color: #8BCCEC;
}
.contact-left button:hover a {
    color: #000000;
}
