.login_form {
    width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.login_form img {
    width: 280px;
}

.form-field {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    position: relative;
}

.form-field label {
    margin-bottom: 8px;
    margin-left: 8px;
}

.form-field input {
    background-color: transparent;
    border: 1px solid #00bcb7;
    color: #00bcb7;
    padding: 5px 10px;
    border-radius: 30px;
}

.form-field input:focus {
    outline: none;
    border-color: #dcfcff;
    color: #dcfcff;
}

.login_form input[type='submit'] {
    background-color: #00bcb7;
    border: 1px solid #00bcb7;
    color: white;
    padding: 5px 10px;
    border-radius: 30px;
    margin-top: 20px;
    align-self: flex-end;
    cursor: pointer;
}

.login_form input[type='submit']:active {
    background-color: #dcfcff;
    border: 1px solid #dcfcff;
}

.field-error {
    font-size: 12px;
    color: #00bcb7;
    position: absolute;
    top: 2px;
    right: 8px;
}