<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    overflow: hidden;
}

.main{
    overflow: hidden;
}

.section {
    margin: auto;
    height: 90%;
    display: flex;
    flex-direction: column;
}

.left-section {
    width: 40%;
}

.right-section {
    width: 60%;
}

.main{
    display: flex;
    flex-direction: column;
}

.title-border {
    border-radius: 30px;
    border: 5px solid #74bdb1;
    box-shadow: 0 0 40px #74bdb1ce;
    background-color: #38585aa1;
    box-sizing: border-box;
    padding: 10px 30px;
    backdrop-filter: blur(5px);
    display: flex;
    margin: 5vh auto 1vh auto;
}

.title {
    font-family: "Playwrite IN";
    font-size: 1.8vw;
    font-weight: 600;
    color: #e9f5f1;
    margin: 0;
}

.content-border {
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 0 50px #95cfb400;
    background-color: #375048a1;
    box-sizing: border-box;
    padding: 2vh 2vw;
    backdrop-filter: blur(5px);
    display: flex;
    margin: 2vh auto 0 0;
    transition: 0.2s;
}

.content-border:hover {
    box-shadow: 0 0 30px #2b3d3592;
    transform: scale(1.05);
    transition: 0.2s;
}

.content{
    font-family: "Poppins";
    font-size: 0.9vw;
    font-weight: 300;
    color: #e9f5f1;
    margin: 0 auto auto 0;
    line-height: 3vh;
    text-align: justify;
}

.inner-main{
    display: flex;
    width: 100%;
    height: 100%;
}

.form-container{
    margin: 0 auto auto auto;
    display: flex;
    width: 80%;
    border: 3px solid #74bdb1;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    background-color: #0000004f;
    box-shadow: 0 0 40px #00000034;
    padding: 4vh 2vw;
    flex-wrap: wrap;
    align-content: flex-start;
}

.form-cell{
    display: flex;
    flex-direction: column;
    margin: 0 auto 0 0;
    padding: 2%;
    width: 40%;
}

.form-cell span{
    font-family: "Poppins";
    font-size: 0.9vw;
    font-weight: 400;
    color: white;
}

.form-cell input:not(.send-button   ){
    font-family: "Poppins";
    font-size: 0.7vw;
    font-weight: 300;
    color: #e4e4e4;
    outline: none;
    border: none;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.37);
    padding: 5px;
    transition: 0.2s;
}

.form-cell textarea{
    font-family: "Poppins";
    font-size: 0.7vw;
    font-weight: 300;
    color: #e4e4e4;
    outline: none;
    border: none;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.37);
    padding: 5px;
    transition: 0.2s;
    resize: none;
    box-sizing: content-box;
}

.form-cell input:not(.send-button):hover{
    box-shadow: 0 0 15px #ffffff2c;
    transition: 0.2s;
}

.form-cell textarea:hover{
    box-shadow: 0 0 15px #ffffff2c;
    transition: 0.2s;
}

.form-cell textarea::placeholder{
    color: #e4e4e4;
}

.body{
    height: 35vh;
    width: 100%;
}

.send-button{
    background-color: #ffffff13;
    border: 3px solid #447174;
    font-family: "Montserrat";
    font-size: 1vw;
    font-weight: 700;
    color: #e4e4e4;
    border-radius: 10px;
    margin: auto;
    padding: 1% 5%;
    cursor: pointer;
    margin-right: 0;
    transition: 0.2s;
}

.send-button:hover{
    box-shadow: 0 0 40px #44717434;
    transform: scale(1.05);
    transition: 0.2s;
}

@keyframes slideIn {
    0% {
        right: -30vw;
        opacity: 0;
    }
    100% {
        right: 2vw;
        opacity: 1;
    }
}

@keyframes slideOut {
    0% {
        right: 2vw;
        opacity: 1;
    }
    100% {
        right: -30vw;
        opacity: 0;
    }
}

.alert {
    position: absolute;
    max-width: 20vw;
    font-size: 0.7vw;
    padding: 0.7%;
    border: 1px solid #ffffff9a;
    border-radius: 10px;
    right: 2vw;
    top: 3vh;
    word-wrap: break-word;
    background-color: #00000052;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px #0000004d;
    color: white;
    font-family: "Poppins";
    opacity: 0;
    animation: slideIn 0.5s forwards, slideOut 0.5s 3s forwards;
}</pre></body></html>