main.login-page {
    margin-top: 170px;
    margin-bottom: 140px;
}

.login-form-step,
.login-box.step-1,
.login-box.step-2 {
    display: none;
}

.login-box.active.step-1,
.login-box.active.step-2 {
    border-radius: 20px;
    border: 3px solid #001A45;
    max-width: 805px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 97px 65px;
}

h1.login-title {
    font-size: 40px;
    line-height: 60px;
    color: #001A45;
    font-weight: 600;
    margin-bottom: 0;
}

p.login-description {
    font-size: 24px;
    line-height: 36px;
    margin-top: 10px;
    margin-bottom: 30px;
}

form#loginform {
    width: 100%;
    max-width: 460px;
}

.login-box form input, 
.login-box form button {
    width: 100%;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box form input[type=password], 
.login-box form input[type=email] {
    border: 1px solid #E6EBF0;
    border-radius: 10px;
    font-size: 18px;
    line-height: 27px;
    color: #231916;
    padding: 0px 25px;
    margin-bottom: 10px;
}

.login-box form button, 
.login-box form input[type=submit]{
    font-size: 24px;
    line-height: 36px;
    color: #fff;
    background: #0AB1D6;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 500;
}

.login-box form button:hover, 
.login-box form input[type=submit]:hover{
    color: #0AB1D6;
    background: #fff;
    border: 1px solid #0AB1D6;
}

.login-form-step.active {
    display: block;
}

a.forgot {
    margin: 10px auto;
    display: block;
    width: 130px;
    font-size: 14px;
    line-height: 22px;
}

a.forgot:hover {
    color: #0AB1D6;
}

.separator {
    font-size: 20px;
    line-height: 30px;
    color: #001A45;
    margin-top: 30px;
    margin-bottom: 20px;
}

button.btn.btn-google{
    height: 53px;
    color: #fff;
    background: #001A45;
    width: 100%;
    max-width: 460px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
    border: 1px solid transparent;
    padding: 0 20px;
    padding-right: 100px;
}

button.btn.btn-google:hover {
    border: 1px solid #001A45;
    color: #001A45;
    background: #fff;
}

button.btn.btn-google img {
    margin-right: 40px;
}

p.signup-text {
    width: 100%;
    max-width: 460px;
    text-align: center;
}

p.signup-text span {
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #001A45;
    font-weight: 400;
    margin-top: 63px;
}

p.signup-text a {
    display: flex;
    width: 100%;
    height: 53px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 36px;
    border: 3px solid #001A45;
    border-radius: 10px;
    color: #001A45;
    margin-top: 20px;
}

p.signup-text a:hover {
    border: 3px solid #001A45;
    color: #fff;
    background: #001A45;
    text-decoration: none;
}

.login-box.step-2 {
    padding: 60px 65px;
}

span.entered_email {
    display: block;
    font-size: 24px;
    line-height: 36px;
    margin-top: 42px;
    margin-bottom: 16px;
}

.warning {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    font-size: 16px;
    line-height: 24px;
    color: #0AB1D6;
}

.warning svg {
    margin-right: 20px;
}

.login-box.step-2 p.signup-text span {
    margin-top: 135px;
}

@media all and (max-width: 1440px) {

    .login-box {
        max-width: 765px;
        padding: 50px 35px;
    }

    h1.login-title {
        font-size: 36px;
        line-height: 48px;
    }

    p.login-description {
        font-size: 18px;
        line-height: 24px;
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .login-box form button, 
    .login-box form input[type=submit] {
        font-size: 18px;
        line-height: 24px;
    }

    .separator {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    button.btn.btn-google {
        font-size: 18px;
        line-height: 24px;
        padding-right: 30px;
    }

    p.signup-text span {
        font-size: 18px;
        line-height: 24px;
        margin-top: 45px;
    }

    p.signup-text a {
        font-size: 18px;
        line-height: 24px;
        margin-top: 10px;
    }

    span.entered_email {
        font-size: 20px;
        line-height: 30px;
        margin-top: 32px;
    }

    .login-box.step-2 p.signup-text span {
        margin-top: 65px;
    }

}

@media all and (max-width: 1024px) {
    main.login-page {
        margin-top: 70px;
        margin-bottom: 80px;
    }
}

@media all and (max-width: 768px) {
    main.login-page {
        margin-top: 50px;
        margin-bottom: 60px;
    }

    .login-box {
        max-width: 565px;
        padding: 30px 20px;
    }

    h1.login-title {
        font-size: 30px;
        line-height: 45px;
    }

    p.login-description {
        font-size: 14px;
        line-height: 18px;
        text-align: center;
    }

    .login-box form button, 
    .login-box form input[type=submit] {
        font-size: 16px;
        line-height: 22px;
    }

    p.signup-text span {
        font-size: 14px;
        line-height: 18px;
        margin-top: 30px;
    }

    span.entered_email {
        font-size: 18px;
        line-height: 26px;
        margin-top: 25px;
    }

    .login-box.step-2 p.signup-text span {
        margin-top: 55px;
    }

    button.btn.btn-google {
        font-size: 16px;
        line-height: 22px;
        padding-right: 20px;
        height: 48px;
    }

    p.signup-text a {
        font-size: 16px;
        line-height: 22px;
        height: 48px;
    }

    .login-box form input, 
    .login-box form button {
        height: 48px;
    }
    
    .login-box.step-2 {
        padding: 30px 20px;
    }

    span.entered_email {
        font-size: 16px;
        line-height: 22px;
        margin-top: 20px;
    }

    .warning {
        font-size: 14px;
        line-height: 22px;
    }

    .warning svg {
        margin-right: 10px;
    }

    .login-box.step-2 p.signup-text span {
        margin-top: 40px;
    }

}