body {
    font-family: Nunito-Regular,sans-serif;
    /* background image public\assets\images\login\pattern.png */
    background: url('../../assets/images/login/pattern.png') top right no-repeat;
    display: flex;
    justify-content: center;
    margin: 0;
}

.sideImg {
    display: none;
    flex: 0 1 38%;
    width: auto;
    height: 100vh;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
}

#kc-header {
    display: none;
}

.mainBox {
    flex: 0 1 592px;
    margin: 3rem 0 1rem;
    padding: 70px 56px;
    border-radius: 7px;
    box-sizing: border-box;
}

.formOptions {
    margin-top:18px
}

#kc-form-buttons {
    margin-top: 43px;
}

#reset-login {
    display: none;
}

.backToStart {
    margin-top: 28px;
}

h1, #kc-attempted-username {
    color: rgb(46, 0, 139);
    font-size: 42px;
    font-family: Catamaran;
    margin: 0 0 20px;
    font-weight: bold;
    display: block;
    line-height: 3.5rem;
}

input[type="email"], input[type="text"], input[type="password"], input[type="number"] {
    width: 100%;
    background: #fff;
    border: 0 none;
    box-shadow: 0 2px 3px 3px #e9e9e9;
    margin: 12px 0;
    padding: 22px 15px;
    font-size: 15px;
    border-radius: 7px;
    filter: none;
    box-sizing: border-box;
}

input[type="email"]:focus,input[type="text"]:focus, input[type="password"]:focus, input[type="number"]:focus {
    outline: none;
}

input[type="button"], input[type="submit"], button {
    background: rgb(46, 0, 139);
    color: #fff !important;
    padding: 19px 43px;
    border: 0;
    border-radius: 27px;
    font-size: 15px;
    cursor: pointer;
}

a, .btnLink {
    text-decoration: none;
    color: rgb(46, 0, 139);
}
a:focus, a:hover, .btnLink:hover, .btnLink:focus {
    text-decoration: underline;
}
.btnLink {
    background: none;
    padding: 0;
}
a.loginOtpNeedHelp {
    display: block;
    margin-top: 23px;
}

.alert {
    padding: 20px 20px 20px 16px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 28px;
}

.alert .fas {
    margin-right: 8px;
    position: absolute;
    left: 24px;
}

.alert-error, .alert-warning {
    background: #fde6ed;
}
.alert-error .fas, .alert-warning .fas {
    color: #e40046;
}

.alert-info, .alert-success {
    background: #d1edf3;
}
.alert-info .fas, .alert-success .fas {
    color: rgb(46, 0, 139);
}

@media (min-width: 990px) {
    body {
        justify-content: left;
    }

    .sideImg {
        display: block;
    }

    .mainBox {
        margin-top: 13rem;
    }
    .mainBox::before {
        content: url('../images/logo.png');
        position: absolute;
        top: 8rem;
    }
}

input, textarea, button {
    -webkit-appearance: none;
}
