* {
    margin: 0;
    padding: 0;
}
/* Background */
.circle{
    position: absolute;
    border-radius: 50%;
    background: #9cd5ff;
    animation: ripple 15s infinite;
    box-shadow: 0px 0px 1px 0px #508fb9;
}

.small{
    width: 200px;
    height: 200px;
    left: -100px;
    bottom: -100px;
}

.medium{
    width: 400px;
    height: 400px;
    left: -200px;
    bottom: -200px;
}

.large{
    width: 600px;
    height: 600px;
    left: -300px;
    bottom: -300px;
}

.xlarge{
    width: 800px;
    height: 800px;
    left: -400px;
    bottom: -400px;
}

.xxlarge{
    width: 1000px;
    height: 1000px;
    left: -500px;
    bottom: -500px;
}

.shade1{
    opacity: 0.2;
}
.shade2{
    opacity: 0.5;
}

.shade3{
    opacity: 0.7;
}

.shade4{
    opacity: 0.8;
}

.shade5{
    opacity: 0.9;
}

@keyframes ripple{
    0%{
        transform: scale(0.8);
    }

    50%{
        transform: scale(1.2);
    }

    100%{
        transform: scale(0.8);
    }
}

/* End Background */

#content {
    padding: unset;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

html, body, body#login, #login #main {
    background: #3399ff;
    background-image: unset;
    overflow: hidden;
}

#main {
    display: flex;
    align-items: center;
    justify-content: center;
}

svg {
    position: absolute;
}

.main-block {
    background: #fff;
    width: 800px;
    height: 600px;
    border-radius: 10px;
    z-index: 999999;
    display: flex;
}

.login-header-form {
    padding: 0px 20px;
}

.t-bold {
    font-weight: 600;
    font-family: sans-serif;
    color: #748899;
}

.s-input {
    border-radius: 5px;
    border: 1px solid #d5d5d5;
    padding: 10px 15px;
}

.input {
    border: unset;
    border-color: unset;
    padding: 0;
}

input.e-input {
    border: unset !important;
    padding: 0 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:active,
input:-webkit-autofill:focus {
    background-color: #FFFFFF !important;
    color: #555 !important;
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: #555555 !important;
}

.b-form {
    width: 50%;
    display: flex;
    padding: 30px;
    flex-direction: column;
    justify-content: space-between;
}

.b-info {
    display: flex;
    align-items: center;
    width: 50%;
    background: #f5faff;
    padding: 30px;
    flex-direction: column;
    border-radius: 0px 10px 10px 0px;
}

.align-header {
    margin: 20px 0;
}

.align-header span {
    margin-right: 10px;
    color: #748899;
}

.prev-img {
    height: 400px;
}

.b-footer {
    padding: 18px 14px 5px;
    display: flex;
    align-items: center;
    justify-content: inherit;
}

form.smart-form {
    position: unset;
}

.smart-form fieldset, fieldset {
    position: unset;
}

span.view-password {
    right: 10px;
    color: #939393;
}

a.generation {
    color: #939393;
    right: 35px;
}

a.generation:hover {
    color: #2262b2;
}

span.view-password:hover {
    color: #2262b2;
}

@media only screen and (max-width: 992px) {
    .main-block {
        width: 700px;
        height: 520px;
    }

    .prev-img {
        height: 350px;
    }

    .b-form {
        overflow-y: scroll;
    }

    .b-form-signin {
        overflow-y: hidden;
    }
}

@media only screen and (max-width: 720px) {
    .main-block {
        width: 90%;
        height: auto;
        margin: 20px 5%;
    }

    .b-form {
        width: 100%;
        overflow: hidden;
    }

    .b-info {
        display: none;
    }

    .mb {
        display: block;
        margin-left: 10px;
    }

    .ripple-background {
        display: none;
    }

    html {
        overflow: auto;
    }

    .login-header-form {
        text-align: center;
    }
}

@media only screen and (min-width: 720px) {
    .mb {
        display: none;
    }
}

div.alert {
    border-radius: 5px;
    border: unset;
}

.alert-danger {
    background: #d82a28;
}

.b-signin {
    width: 400px;
}

.b-form-signin {
    width: 100%;
}

.align-center {
    text-align: center;
}

.smart-form .checkbox input:checked + i {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.e-select {
    background: #fff;
    border-color: #fff;
    width: 100%;
    color: #60747C;
}

.e-signin-link {
    text-decoration: underline;
}

.notifyjs-corner {
    z-index: 9999999999 !important;
}
