.login_form {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
}

.login_header {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
}

.login_header img {
    width: 130px;
}

.login_header h1 {
    color: #444;
    font-size: 1.5em;
}

.login_input {
    border: 2px solid #444;
    border-radius: 13px;
    padding: 13px;
    outline: none;
    max-width: 273px;
    width: 100%;
    margin-bottom: 13px;
    font-size: 1em;
}

.login_button {
    background-color: #ff7d6c;
    color: #FFF;
    border-radius: 13px;
    padding: 13px;
    max-width: 273px;
    width: 100%;
    cursor: pointer;
    font-size: 1em;
}

.login_button:disabled {
    background-color: #a1a1a1;
    color: #e2e2e2;
    cursor: auto;
}