body{
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height:90vh;
    margin: 0;
}
.container{
    background-color: white;
    width: 300px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.login-form{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
h2{
    text-align: center;
    margin-bottom: 10px;
}
/* make inputs fill the form width and include padding in width calculation */
.login-form input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid rgba(10,168,5,0.86);
    border-radius: 5px;
    box-sizing: border-box;
}
button{
    width:100%;
    max-width:160px;
    padding:10px;
    background-color: #018620;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius:10px;
    color: white;
    font-size: 16px;
    cursor:pointer;
    align-self: center;
}
button:hover{
    background-color: #ecf005;
}