body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    
}

a{
 
}

input{
    padding: 8px;
    text-decoration: none;
    border: none;
    outline: none;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: bold;

}

.blocks{
    display: flex;
}
.error-message{
    color:red;
}

.left-block{
    height: 100vh;
    width: 70%;
}

.left-block img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.right-block{
    background-color:#2e2e2e ;
    padding-top: 250px;
    padding-left: 80px;
    color: #fff;
    width: 30%;

}

.header{
    font-size: 28px;
    font-weight: bold;
    width: 55%;
}

.commentaire{
    font-size: 12px;
    width: 55%;
    color:#ffffffa6 ;
    line-height: 1.5;
}

.form{
    margin-top: 40px;
}





.phone-number{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    margin-top: 20px;
    width: 50%;
}

.phone-number-input{
    height: 32px;
    border-bottom: 2px solid #80808080;
}

.country-block{
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #80808080;
    height: 32px;
}

.country-code p{
    font-size: 15px;
    font-weight: 600;
}

.flag{
    margin-top: 5px;
}

.flag img{
    height: 18px;
  width: 18px;
  border-radius: 50%;
}

.footer{
    color: #2080c0;
    font-weight: bold;
    font-size: 13px;
    margin-top: 200px;
    display: flex;

}

.signup{
    font-size: 13px;
    font-weight: bold;

}

.line-1{
}

.button{
    cursor: pointer;
    background:#484a4d;
    padding: 10px 7px 10px 7px;
    border-radius: 10px;    
   width: fit-content;
    text-align: center;
}



button{
    text-decoration: none;
    border: none;
    outline: none;
    background-color: transparent;
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 600;
}
@media (max-width: 600px) {
    .blocks{
        display: block;
    }
    .left-block {
        width: auto;
        height: 300px;
    }
    .left-block img {
        height: 300px;
    }
    .right-block {
        width: auto;
        padding: 40px;
        padding-top: 20px;
    }
    .header {
        width: auto;
        font-size: 24px;
    }
    .commentaire {
        width: auto;
    }
}