
*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
body{
    font-family:'Outfit';
    background: black;
}
.contact-container{
    height: 100vh;
    display:flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left{
    display:flex;
    flex-direction: column;
    align-items: start;
    gap:20px
}
.contact-left-title h2{
    font-weight: 600;
    color:red;
    font-size: 40px;
    margin-bottom: 5px;
}
.contact-left-title hr{
    border: none;
    width:120px;
    height:5px;
    background-color:red;
    border-radius:10px;
    margin-bottom: 20px;
}
.contact-inputs{
    width:400px;
    height:50px;
    border:none;
    outline:none;
    padding-left:25px;
    font-weight:500;
    color:#181717;
    border-radius: 50px;
}
.contact-left textarea{
    height:140px;
    padding-top:15px;
    border-radius:20px;
}
.contact-inputs::placeholder{
    color: rgb(163, 162, 162);
}
.contact-left button{
    display:flex;
    align-items: centre;
    padding: 15px 30px;
    font-size:16px;
    color:#fefcfc;
    gap:10px;
    border:none;
    border-radius:50px;
    background: linear-gradient(310deg,red,rgb(227, 48, 48));
    cursor:pointer;
}
.contact-left button img{
    height: 15px;
}
.contact-left button:hover{
    background:red;
    color:white;
    letter-spacing:0.3px;
}
.contact-right img{
    width:500px;
}
@media (max-width:800px){
    .contact-inputs{
        width:800vw;
    }
    .contact.right{
        display:none;
    }
}