*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#0b6b3a;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
}

.auth-container{
width:100%;
display:flex;
justify-content:center;
}

.auth-box{
background:white;
padding:40px;
width:400px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,.2);
text-align:center;
}

.auth-box h1{
margin-bottom:10px;
color:#0b6b3a;
}

.auth-box p{
margin-bottom:20px;
}

input{
width:100%;
padding:14px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:5px;
font-size:16px;
}

.main-btn{
width:100%;
padding:15px;
background:#0b6b3a;
color:white;
border:none;
border-radius:5px;
cursor:pointer;
font-size:16px;
margin-top:10px;
}

.main-btn:hover{
background:#09562f;
}

button[type="button"]{
margin-bottom:15px;
border:none;
background:none;
color:#0b6b3a;
cursor:pointer;
}

a{
color:#0b6b3a;
text-decoration:none;
font-weight:bold;
}