*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: outfit;
    background: linear-gradient(750deg, rgb(79, 189, 24),orange);
}
.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: blue;
    font-size: 40px;
    margin-bottom: 5px;
}
.contact-left-title hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: blue;
    border-radius: 10px;
    margin-bottom: 20px;

}
.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    border-radius: 50px;

}
.contact-left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}
.contact-inputs:focus{
    border: 2px solid blue;
}z
.contact-inputs::placeholder{
    color: gray;
}
.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    background: linear-gradient(120deg,blue,yellow,green);
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;

}
.brand{
    margin-top: 50px;
    margin-left: 120px;
    font-size: 20px;
}
