.container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    height: 100dvh;
    align-items: center;
    padding-top: 10dvh;
}

.logo {
    width: 250px;
}

.login-form {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    padding: 50px 30px;
    width: 350px;
    gap: 30px;
}

.warning {
    color: red;
}

.login-button {
    width: 160px;
    height: 50px;
}

input {
    border: 1px solid black;
    width: 100%;
    height: 50px;
    padding: 10px;
}