#login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 95vh;
}

#veikt-logo img {
    height: 110px;
    width: auto;
    margin-bottom: 15px;
}

.form-group {
    width: 250px;
    height: 38px;
    margin-bottom: 7px;
    margin-left: 7px;
}

input {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    font-size: 16px;
    padding-left: 5px;
    padding-right: 5px;
    border: 1px solid black;
    border-radius: 3px
}

input:focus {
    outline: none;
    border: 2px solid black;
}

#login-button {
    width: 250px;
    height: 38px;
    font-size: 16px;
    margin-left: 7px;
    border: 1px solid black;
    border-radius: 3px;
    margin-top: 20px;
    background-color: #8DA1B9;
    color: white;
}

#login-button:hover {
    background-color: #dbeafd;
    color: #000000;
    cursor: pointer;
}

.non-field-errors {
    margin-bottom: 15px;
}