*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Outfit';
    background: linear-gradient(#70e2f3, #1d207d);
}

.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: #040128;
font-size: 40px;
margin-bottom: 5px;
}

.contact-left-title hr {
    border: none;
    width: 120px;
    height: 5px;background: #040128;
    border-radius: 10px;
    margin-bottom: 20px;

}

.contact-inputs {
    width: 400px;
    height: 40px;
    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, #9eebf7, #05051f);
    cursor: pointer;

}

button:hover {
    font-size: 16.4px;
    background: linear-gradient(270deg, #ff0040, #ff0000);
}

.contact-left button img {
    height: 15px;

}

.contact-right img {
    width: 500px;

}

@media (max-width:800px) {
    .contact-inputs {
        width: 80vw;
    }
    .contact-right {
        display: none;
    }
}

.contact-left h2,
.contact-left hr,
.box1,
.box2,
.box3,
.box4,
.box5,
.box6 {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}


@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.h2 {
    animation-delay: .2s !important;
}

.contact-left hr {
    animation-delay: .6s !important;
}
.box1 {
    animation-delay: .4s !important;
}
.box2 {
    animation-delay: .6s !important;
}

.box3 {
    animation-delay: .8s !important;
}

.box4 {
    animation-delay: 1s !important;
}

.box5 {
    animation-delay: 1.2s !important;
}