*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}      
    
body {
    background-color: #646F58;
    font-family: Arial, Helvetica, sans-serif;
    background-repeat: no-repeat;
    background-size: fill;
    overflow: hidden;
}

.cotact-container{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    position: relative;
    left: 40px;
    top: 40px;
}

.contact-left-title h1{
    font-weight: 600;
    color: white;
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: beige;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-input{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: white;
    border-radius: 30px;
    color: black;
}

.contact-left textarea{
height: 140px;
padding-top: 15px;
border-radius: 20px;
}

.contact-input:focus{
    border: 2px solid black;
}

.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: white;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: grey;
    cursor: pointer;
}

contact-right img{
    width: 500px;
}

@media (max-width: 800x) {
.contact-inputs{
    width: 80vw;
}
.contact-right{
    display: none;
}

}

.home{
position: relative;
    left: 1350px;
    bottom: 400px;
    background-color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
}
