<style>

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

/* BACKGROUND BATIK */

body{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
background-image:
linear-gradient(rgba(46,139,87,0.25),rgba(46,139,87,0.25)),
url("ptabb.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}
 .body p{
font-family:Arial;
color:#2e8b57;
text-align:center;
margin-bottom:0px;
}
/* BOX LOGIN */

.login-container{
background:white;
padding:40px;
border-radius:15px;
width:100%;
max-width:380px;
box-shadow:0 15px 35px rgba(0,0,0,0.2);
text-align:center;
}

/* LOGO */

.logo img{
width:200px;
margin-bottom:30px;
}

.logo h2{
color:#2e8b57;
margin-bottom:25px;
}


/* INPUT */

.input-group{
text-align:left;
margin-bottom:18px;
}

.input-group label{
font-size:14px;
color:#444;
display:block;
margin-bottom:5px;
}

.input-group input{
width:100%;
padding:10px;
border-radius:8px;
border:1px solid #ccc;
font-size:14px;
transition:0.3s;
}

.input-group input:focus{
outline:none;
border-color:#2e8b57;
box-shadow:0 0 5px rgba(46,139,87,0.3);
}

/* BUTTON */

.button-group{
display:flex;
gap:10px;
margin-top:10px;
}

button{
flex:1;
padding:10px;
border:none;
border-radius:8px;
font-size:14px;
cursor:pointer;
}

.reset{
background:#e0e0e0;
}

.reset:hover{
background:#d0d0d0;
}

.login{
background:#2e8b57;
color:white;
}

.login:hover{
background:#256f47;
}

/* FOOTER */

.footer{
margin-top:20px;
font-size:12px;
color:#777;
}

</style>