*{

box-sizing:border-box;

font-family:Tajawal,Arial;

}


body{

margin:0;

min-height:100vh;

background:#f5f7fa;

display:flex;

align-items:center;

justify-content:center;

padding:20px;

}



.auth-box{


background:#fff;

width:420px;

max-width:100%;

padding:40px;

border-radius:20px;

box-shadow:0 10px 35px #ddd;


}



h2{


text-align:center;

color:#1F8A4D;

margin-bottom:30px;


}



input{


width:100%;

height:52px;

margin-bottom:15px;

border:1px solid #ddd;

border-radius:12px;

padding:0 15px;

font-size:16px;


}



button{


width:100%;

height:52px;

background:#1F8A4D;

color:#fff;

border:none;

border-radius:12px;

cursor:pointer;

font-size:17px;


}


button:hover{

background:#166534;

}



a{

display:block;

text-align:center;

margin-top:20px;

color:#1F8A4D;

}



#message{

text-align:center;

margin-top:15px;

}

@media(max-width:480px){

.auth-box{

padding:28px 20px;

border-radius:16px;

}

h2{

font-size:22px;

margin-bottom:22px;

}

input,
button{

height:48px;

}

}