*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

body{

    background:#e8f5e9;

    display:flex;

    justify-content:center;

    align-items:center;

    height:100vh;

}

.login-box{

    width:360px;

    background:white;

    border-radius:15px;

    padding:35px;

    box-shadow:0px 0px 20px rgba(0,0,0,.15);

    text-align:center;

}

.logo{

    font-size:55px;

}

h1{

    color:#00a884;

    margin-top:10px;

}

.subtitle{

    color:#888;

    margin-bottom:25px;

}

input{

    width:100%;

    padding:12px;

    margin-bottom:15px;

    border:1px solid #ccc;

    border-radius:8px;

    font-size:16px;

}

input:focus{

    outline:none;

    border:1px solid #00a884;

}

button{

    width:100%;

    padding:13px;

    border:none;

    border-radius:8px;

    background:#00a884;

    color:white;

    font-size:17px;

    cursor:pointer;

}

button:hover{

    background:#00896e;

}

#pesan{

    margin-top:15px;

    color:red;

}