.login-form-box {
    width: 520px;
    height: 463px;
    border-radius: 5px;
    background-color: white;
    position: absolute;
    z-index: 4;
    top: 288px;
    opacity: 1;
    left: 28.68%;
    display: none;
}

#login-background {
    position: absolute;
    width: 100%;
    height: 100vh;
    opacity: 0.7;
    background-color: rgba(45, 55, 72, 0.6);
    z-index: 3;
    display: none;
}

.login-form-container {
    width: 400px;
    margin: 0 auto;
    padding-top: 40px;
}

.login-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.login-header h1 {
    font-family: Assistant;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #2D3748;
    letter-spacing: -0.408px;
}

#login-close {
    background: url('../images/close-button.png') center center;
    width: 20px;
    height: 20px;
    top: 52px;
    cursor: pointer;
    right: 69px;
}

.input-text-field {
    width: 100%;
    height: 56px;
    background: #EDF2F7;
    border-radius: 4px 4px 0px 0px;
    border: none;
    border-bottom: 1px solid #2D3748;
    padding: 16px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
}

.input-text-field:focus::placeholder {
    opacity: 0;
}

.input-text-field:first-child {
    margin-bottom: 40px;
}

.remember-me {
    display: flex;
    justify-content: space-between;
}

.remember-me h1 {
    font-family: 'Assistant';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-align: right;
    color: #000000;
    margin-top: -1px;
}

.remember-me h2 {
    font-family: 'Assistant';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 34px;
    color: #2D3748;
    margin-top: 34px;
}

.checkbox {
    margin-top: 44px;
    display: flex;
    float: left;
}

.checkbox input {
    width: 13px;
    height: 13px;
    margin-right: 9px;
}

.checkbox input:checked {
    background-color: white;
}

.login-submit {
    width: 100%;
    height: 48px;
    background-color: rgba(255, 178, 0, 1);
    background: #FFB200;
    border: 1px solid #FFB200;
    border-radius: 5px;
    margin-top: 14px;
    font-family: 'Assistant';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #2D3748;
}