body{
margin:0;
font-family:Arial;
background:#f5f5f5;
}

.container{
display:flex;
height:100vh;
align-items:center;
justify-content:center;
}

.left{
width:45%;
text-align:center;
}

.left img{
width:80%;
}

.right{
width:40%;
background:white;
padding:40px;
text-align:center;
border-radius:10px;
}

.logo{
width:70px;
margin-bottom:10px;
}

h1{
font-size:28px;
}

.query{
color:gray;
}

.step{
margin:15px 0;
font-weight:bold;
}

input{
width:85%;
padding:12px;
margin-top:10px;
border:1px solid red;
border-radius:5px;
}

button{
margin-top:20px;
padding:12px 40px;
background:#1976d2;
color:white;
border:none;
border-radius:5px;
font-size:16px;
cursor:pointer;
}

#error{
color:red;
font-size:12px;
display:none;
}