*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Vazirmatn',sans-serif;
}

body{
background:#f7f4ee;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
}

.container{
width:95%;
max-width:420px;
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.1);
text-align:center;
}

.logo{
width:170px;
margin-bottom:20px;
}

h1{
font-size:28px;
margin-bottom:10px;
color:#2c2c2c;
}

p{
font-size:15px;
color:#666;
margin-bottom:25px;
line-height:28px;
}

input{
width:100%;
padding:15px;
border-radius:12px;
border:1px solid #ddd;
font-size:18px;
text-align:center;
outline:none;
margin-bottom:20px;
}

input:focus{
border-color:#a88d5d;
}

button{
width:100%;
padding:15px;
border:none;
border-radius:12px;
background:#8d6b32;
color:white;
font-size:18px;
cursor:pointer;
transition:.3s;
}

button:hover{
background:#6d5227;
}

#msg{
margin-top:20px;
font-size:15px;
color:green;
line-height:25px;
}