@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap');
*{margin: 0;padding:0;box-sizing: border-box;}
html, body {
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    background: #cceff1;
}
h1 {
    text-transform: uppercase;
    background: #fff;
    border-radius: 4px;
    padding: 12px 25px;
    position: relative;
    top: 10px;
}
#login {
    width: 1024px;
    height: 100%;
    margin:  0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#login-form {
    width: 50%;
    padding: 15px;
    background: #fff;
    border-radius: 4px;
}
.field {
    width: 100%;
    display: inline-block;
    padding: 10px;
    border: none;
    background: #cceff1;
    border-radius: 4px;
    margin: 15px 0;
}
button {padding: 12px 25px;border: none; background: #cceff1;color: #333;margin: 0 auto;display: block;border-radius: 4px;margin-top: 25px;cursor: pointer}
