<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
    padding: 100;
    margin: 100;
    box-sizing: border-box;
    outline: none;
    font-family: 'Roboto', sans-serif;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #f2f2f2;
}

.contact-form{
    width:80vw ;
    display: flex;
    border-radius: 50px;
    justify-content: center;
    background: #fff;
    margin: 50px 0;
}

.contact-form &gt;*{
    width: 50%;
    border-radius: 50px;
}
.contact-form .first-container{
    background:linear-gradient(45deg, rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url(blue.png);
    background-repeat: no-repeat;
    width: 50%;
    display: flex;justify-content: center;
    align-items: center;
}
.contact-form .first-container .info div{
    margin: 24px;

}
.info div h3{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    padding-bottom: 10px;
}
.info div:first-of-type p{
    max-width: 260px;
    color: #999;
}
.info div p{
    color: #1b7a4f;
    line-height: 1.6;
    font-size: 16px;
}
.sec-container{
    padding: 30px;
    align-items: center;
}
.sec-container h2{
    font-size: 30px;
    font-family: fantasy;
    font-weight: 300;
    text-align: center;
    color: rgb(20, 8, 8);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px;
    -webkit-box-reflect: below 1px linear-gradient(transparent,#0004);
    line-height: 0.70em;
    outline: none;
    animation: animate 5s linear infinite;
}
@keyframes animate
{
    0%,18%,20%,50.1%,60%,65.1%,80%,90.1%,92%
    {
        color: #505353;
        text-shadow: none;
    }
    18.1%,20.1%,30%,50%,60.1%,65%,80.1%,90%,92.1%,100%
    {
        color: #fff;
        text-shadow: 0 0 10px #03bcf4,
                    0 0 20px #03bcf4,
                    0 0 40px #03bcf4,
                    0 0 80px #03bcf4,
                    0 0 160px #03bcf4,
                    

    
        
    }
}

.sec-container form{
    display: flex;
    flex-direction: column;
}
.sec-container form .form-group{
    margin-bottom: 10px;
}
.sec-container form .form-group{
   min-height: 50px;
   border: 1px solid #e6e6e6;
   padding: 0 20px;
}
.sec-container form .form-group label{ 
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #e6e6e6;
    font-size: 16px;
    color: #333;
    text-transform: uppercase;
    margin-top: -1px;
 }
 .sec-container form .form-group:first-of-type input{
     width: 50.1%;
     margin-right:-5px;
     padding: 2px;
     color: gray;

 }
 .sec-container form .form-group input{
     width: 100%;
     font-size: 15px;
     margin-top: -2px;
}
 .sec-container form .form-group input::placeholder,
 .sec-container form .form-group textarea::placeholder{
     color: #999;

 }
 .sec-container form .form-group textarea{
     width: 100%;
     min-height: 80px;
     resize: none;
     padding: 10px 20px;
     margin-top: -1px
 }
 .sec-container form button{
     width: 200px;
     height: 50px;
     color: #fff;
     background: #257551;
     font-size: 18px;
     font-weight: 600;
     text-transform: uppercase;
     border: 0;
     position: relative;
     left: calc(50% - 100px);
     cursor: pointer;
 }
 .sec-container form button:hover{
     background: #333;

 }
 @media(max-width: 800px)
 {

    .contact-form{
        flex-direction: column-reverse;
        width: 90vw;

    }
 }
 @media(max-width: 700px)
 {

    .contact-form{
        flex-direction: column-reverse;
        width: 90vw;
        
    }
    .contact-form &gt; *{
        width: 100%;

    }
    .contact-form .first-containder{
        padding: 40px 0;
    }
 }
 .mail:hover{
    transform: scale(1.1);}





</pre></body></html>