*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Outfit';
    background: linear-gradient(#ff7aa8, #ffcbcb);
    
}

.contact-container {
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}
.contact-left-title h2{
font-weight: 600;
color: #040128;
font-size: 30px;
margin-bottom: 5px;
margin-top: 45px;
}

.contact-left-title hr {
    border: none;
    width: 425px;
    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: 30px;
    margin-left: 10px;
}

.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;
    margin-left: 150px;

}

button:hover {
    font-size: 16.4px;
    background: linear-gradient(270deg, #ff0040, #ff0000);
}

.contact-left button img {
    height: 15px;

}

.contact-right img {
    width: 500px;

}

.QR {
    display: none;
}
@media (max-width:700px) {

.contact-inputs {
        width: 90vw;
        margin-left: 10px;
    }

.contact-left button {
    margin-left: 110px;
}

.contact-container {
    height: 134vh;
}

.contact-right {
        display: none;
    }

.QR {
    display: inline;
    width: 190px; 
    margin-left: 80px;  
}

.contact-left h2 {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
    margin-top: 60px;
    margin-left: 8px;
    }

}
.contact-left hr,
.box1,
.box2,
.QR,
.box3,
.box4,
.box5,
.box6,
.box7,
.box8,
.box9,
.box10 {
    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: .4s !important;
}
.box1 {
    animation-delay: .6s !important;
}
.box2 {
    animation-delay: .8s !important;
}

.QR {
    animation-delay: .8s !important;
}

.box3 {
    animation-delay: 1s !important;
}

.box4 {
    animation-delay: 1.2s !important;
}

.box5 {
    animation-delay: 1.4s !important;
}

.box6 {
    animation-delay: 1.6s !important;
}
.box7 {
    animation-delay: 1.8s !important;
}

.box8 {
    animation-delay: 2s !important;
}

.box9 {
    animation-delay: 1.1s !important;
}

.box10 {
    animation-delay: 1.2s !important;
}