@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}
:root{
    --primary-color: rgb(255,90,61);
    --button-background: rgb(245,222,219);
    --secondary-color: rgb(7,26,29);
    --text-color: rgb(93,115,141);
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
}
.container-item1{
    width: 50%;
    height: 100vh;
}
.container-item1 img{
    width: 100%;
    height: 99.5vh;
    object-fit: cover;
}
.container-item{
    width: 50%;
    height: 100vh;
    padding: 10px;
}
.container-item .header{
    width: 200px;
    height: 100px;
}
.container-item .header img{
    width: 150px;
}
.form{
    width: 500px;
    height: 500px;
    margin-left: 70px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.input{
    display: flex;
    gap: 5px;
    flex-direction: column;
}
.input input{
    width: 400px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid var(--text-color);
}
.form button{
    width: 400px;
    height: 50px;
    border-radius: 5px;
    border: none;
    font-size: 1.2rem;
    color: #fff;
    background-color: var(--primary-color);
}
.form p{
    height: 50px;
    letter-spacing: -0.4px;
    color: var(--text-color);
}
.form h4{
    font-weight: 400;
}
.form h4 a{
    text-decoration: none;
    color: rgb(0,160,255);
}
.form h4 a:hover{
    text-decoration: underline;
}
@media screen and (max-width:768px) {
    .container{
        flex-direction: column;
        height: auto;
    }
    .container-item1{
        width: 100%;
    }
    .container-item{
        width: 100%;
    }
    .form{
        width: 90%;
    }
    .input input{
        width: 90%;
    }
    .form button{
        width: 90%;
    }
}