*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Outfit', sans-serif;
}
.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: #a363aa;
    font-size: 40px;
    margin-bottom: 5px;
}
h2{
    color: white;
}
.contact-left-title hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: #a363aa;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px ;
    font-weight: 500;
    color:#666;
    border-radius: 50px;
}
.contact-left textarea{
    height: 140px;
    padding-top:15px ;
    border-radius: 20px;
}
.contact-inputs:focus{
    border: 2px solid #ff994f;
}
.contact-inputs::placeholder{
    color:#a9a9a9;
}
.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap:10px;
    border: none;
    border-radius: 50px;
    background:linear-gradient(270deg,#ff994f,#fa6d86);
    cursor: pointer;
}
.contact-left button img{
    height: 15px;
}
.contact-right img{
    width: 500px;;
}
@media(max-width:800px){
    .contact-inputs{
        width: 80vw;
    }
    .contact-right{
        display:none;
    }
}
.logo{
    padding: 15px;
    text-decoration-line: none;
    transition: transform .2s;
    color: white;
    padding-left: 20px;
};
.logo:hover{
transform: scale(1.2);
}
span{
    font-size:large;
  }
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
.back{
width: 100px;
height: 45px;
cursor: pointer;
color: #fff;
font-size: 17px;
border-radius: 1rem;
border: none;
position: relative;
background: #200d07;
transition: 0.1s;
margin: 10px 0  0 10px;
border: 2px solid white;
}

.back::after {
content: '';
width: 100%;
height: 100%;
background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgb(230, 21, 52) 17.8%, rgb(246, 60, 60) 100.2% );
filter: blur(15px);
z-index: -1;
position: absolute;
left: 0;
top: 0;
}

.back:active {
transform: scale(0.9) rotate(3deg);
background: radial-gradient( circle farthest-corner at 10% 20%,  rgb(255, 94, 105) 17.8%, rgb(88, 5, 8) 100.2% );
transition: 0.5s;
}