.form-box {
    background: url(../img/login-bg.svg);
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    display: flex;
    align-items: center;
    padding: 5% 0;
    background-attachment: fixed;
}

.login-box {
    margin-right: 10%;
    width: 400px;
    margin-left: auto;
    background: #FFF;
    padding: 2rem;
    box-shadow: 0px 0px 28px 0px rgb(0 0 0 / 2%);
    border-radius: 15px;
    max-width: 96%;
}

    .login-box h1 {
        font-size: 25px;
        font-weight: 700;
        line-height: 35px;
        color: #ff9514;
    }

        .login-box h1 span {
            font-weight: 300;
            color: #000;
        }

    .login-box p {
        font-size: 14px;
        letter-spacing: 0.5px;
        font-weight: 500;
        color: #626262;
    }

p.account {
    font-size: 13px;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #626262;
    text-align: center;
}

.login-box .form-control {
    height: 45px;
    margin-bottom: 10px;
    border-color: #d9f4ff;
}

.form-box a.logo {
    width: 200px;
    position: absolute;
    top: 5%;
    left: 10%;
}

.form-box a img {
    width: 200px;
}

.login-box form {
    margin-top: 30px;
    text-align: center
}

    .login-box form .form-label {
        font-size: 13px;
        letter-spacing: 0.5px;
        font-weight: 500;
    }

    .login-box form .forgot-password {
        font-size: 12px;
        color: #6e6e6e;
        position: absolute;
        right: 0;
        top: 6px;
    }

.forgot {
    position: relative;
}

.remember-me {
    margin-bottom: 20px;
}

    .remember-me label {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
    }

.login-btn {
    margin-top: 10px;
    border: 0px;
    padding: 5px 10px 5px 20px;
}

.account {
    margin-top: 20px;
}

.divider {
    position: relative;
    margin-top: 30px;
}

    .divider span {
        position: absolute;
        width: 100px;
        height: 30px;
        background: #FFF;
        top: -11px;
        left: calc(50% - 50px);
        border-radius: 30px;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
    }

.other-login {
    text-align: center;
    margin-top: 30px;
}

    .other-login a {
        cursor: pointer;
        background: #27aae1;
        padding: 6px 16px 6px 10px;
        display: inline-block;
        border-radius: 250px;
        color: #FFF !important;
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 1px;
        margin: 0 3px;
    }

        .other-login a i {
            width: 30px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            font-size: 13px;
            background: #ffffff36;
            border-radius: 50px;
            margin-right: 5px;
            font-weight: 500;
        }

        .other-login a.facebook {
            background: #1278f3;
        }

            .other-login a.facebook:hover {
                box-shadow: 0px 0px 15px 0px rgb(18 120 243 / 30%)
            }

        .other-login a.google {
            background: #e34133;
        }

            .other-login a.google:hover {
                box-shadow: 0px 0px 15px 0px rgb(227 65 51 / 30%)
            }

form .col {
    text-align: left;
}

@media (max-width: 800px){
    .form-box a.logo {
        margin-bottom: 15px;
        display: inline-block;
        position: relative;
        left: 0;
        top: 0;
    }

    .form-box a img {
        width: 150px;
    }
    .login-box {
        margin-left: auto;
    }
}

@media (max-width: 500px) {
    .login-box {
        margin-right: auto;
        padding: 20px;
    }
    .other-login {
        display: flex;
        align-items: center;
        justify-content: center;
    }
        .other-login a {
            padding: 8px;
        }
        .other-login a i {
        margin:0px;
        }
        .other-login a span {
            display: none;
        }
}