.loginHeader {
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 53px;
    text-align: center;
    color: #FF9E1B;
    
    margin-top: 41px;
    margin-bottom: 20px;
}

.loginPage {
    display: flex;
    justify-content: center;
    margin-bottom: 873px;
}

.loginForm {
    border: 1px solid #D2D2D2;
    padding-top: 26px;
    padding-bottom: 10px;
    padding-left: 48px;
    padding-right: 48px;
}

.loginFormHeader {
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: #444444;

    margin-bottom: 20px;
}

.loginFormInputs {
    height: 49px;
    width: 504px;
    margin-bottom: 16px;
    padding-left: 15px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 32px;
    
}

    .loginFormInputs::placeholder {
        color: #B5B5B5;
    }

.loginFormFooter {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.loginFormRememberMeContainer {
    display: flex;
    align-items: center;
}

.loginFormCheckbox {
    width: 24px;
    height: 24px;
    left: 472px;
    top: 476px;
    accent-color: #FF9E1B;
}

.loginFormText {
    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    padding: 3px;
}

.loginFormButton {
    width: 148px;
    height: 48px;
    left: 828px;
    top: 464px;
    background: #FF9E1B;
    border: none;

    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
}

.loginFormButton:hover {
    background-color: #ffb21b;
}

@media (max-width: 1159px) {
    .loginPage {
        margin-bottom: 250px;
    }

    .loginForm {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 0px;
        padding-right: 0px;
        max-width: 400px;
        min-width: 280px;
        width: 95%;
        height: 400px;
    }

    .loginFormInputs {
        width: 100%;
    }

    .loginFormFooter {
        flex-direction: column;
    }

    .loginFormFooter > * {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}