html {
    height: 100%;
}
body {
    min-height: 100%;
    height: 100%;
    background-color: #e9ba02;
}
.login-page {
    height: 100%;
    display: flex;
}
.content-wrap {
    width: 400px;
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
}
.content-wrap input {
    margin-top: 20px;
}
.content-wrap h3 {
    text-align: center;
    color: #333;
}
.content-wrap button {
    margin-top: 20px;
    background: transparent;
    border: 1px solid #e9ba02;
    border-radius: 4px;
    height: 40px;
    width: 100%;
    color: #e9ba02;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}
.content-wrap button:hover {
    background-color: #e9ba02;
    color: #fff;
}
.error {
    color: red;
    font-size: 13px;
    margin: 0;
}