.login-box, .register-box {
    width: 100%!important;
    margin: 0 auto!important;
    padding: 40px 0;
}
.login-logo a, .register-logo a{
    color: #fff!important;
}
.login-page, .register-page {
    height: 100vh!important;
    background: url("../img/bg-login.jpg")50% / cover no-repeat!important;
}

.login-box-body, .register-box-body {
    position: absolute;
    width: 100%;
    max-width: 450px;
    transition: all 0.2s;
    cursor: pointer;
    margin: 0 auto;
    border-radius: 8px;
    background: #1a1a21!important;
    box-shadow: 0 0 10px 0 rgb(9, 16, 30), 0 2px 4px -1px rgb(0, 2, 5);
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.login-box-body .btn.btn-flat, .register-box-body .btn.btn-flat {
    background: linear-gradient(115.13deg, rgb(234, 148, 63) 8.88%, rgb(255 68 0 / 97%) 97.01%);
    border: none;
    outline: none;
    border-radius: 8px;
    max-width: 120px;
    height: 40px;
}

.login-box-body label,
.register-box-body label {
    cursor: pointer;
    padding-left: 35px;
    color: #cfcfcf;
}

.login-box-body .checkbox-input [type='checkbox'],
.register-box-body .checkbox-input [type='checkbox'] {
    margin: 0 10px;
}

.login-box-body .form-group.field-loginform-rememberme,
.register-box-body .form-group.field-loginform-rememberme {
    display: flex;
    align-items: center;
    margin: 0;
}

.login-box-body .btn.btn-flat:hover,
.register-box-body .btn.btn-flat:hover {
    color: #e8e8e8;
    box-shadow: 0 0 4px #ff5d2d;
}

.login-box-body .form-submit,
.register-box-body .form-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-box-body .form-control,
.register-box-body .form-control {
    border: none;
    outline: none;
    box-shadow: 0 0 10px 0 rgba(9, 16, 30, 0.19), 0 2px 4px -1px rgba(0, 2, 5, 0.15);
    height: 40px;
    border-radius: 8px;
}

.login-box-body .login-wrap,
.register-box-body .login-wrap {
    width: inherit;
    height: inherit;
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 40px;
}

.login-box-body .circle,
.register-box-body .circle {
    width: 100px;
    height: 100px;
    background: radial-gradient(#ffb900, #ff6200);
    border-radius: 50%;
    position: absolute;
    animation: move-up6 2s ease-in infinite alternate-reverse;
}
.login-box-body .circle:before,
.register-box-body .circle:before {
    content: "";
    position: absolute;
    left: -5px;
    right: -5px;
    top: -5px;
    bottom: -5px;
    z-index: -1;
    border-radius: inherit;
    box-shadow: inset 0 10px 10px rgba(0, 0, 0, 0.38);
}
.login-box-body .circle:after,
.register-box-body .circle:after {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    z-index: -2;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 1px 2px rgba(0, 0, 0, 0.61), 0 0 10px rgba(0, 0, 0, 0.51);
}

.login-box-body .circle:nth-child(1),
.register-box-body .circle:nth-child(1) {
    top: -25px;
    left: -25px;
}

.login-box-body .circle:nth-child(2),
.register-box-body .circle:nth-child(2) {
    bottom: -25px;
    right: -25px;
    animation-name: move-down1;
}

@keyframes move-up6 {
    to {
        transform: translateY(-10px);
    }
}

@keyframes move-down1 {
    to {
        transform: translateY(10px);
    }
}

.checkbox-wrapper {
    position: relative;
}

.checkbox-wrapper > svg {
    position: absolute;
    top: -130%;
    left: -170%;
    width: 110px;
    pointer-events: none;
}

.checkbox-wrapper * {
    box-sizing: border-box;
}

.checkbox-wrapper input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    margin: 0;
}

.checkbox-wrapper input[type="checkbox"]:focus {
    outline: 0;
}

.checkbox-wrapper .cbx {
    display: flex;
    align-items: center;
}

.checkbox-wrapper .cbx input {
    position: absolute;
    top: 6px;
    left: 0;
    width: 24px;
    height: 24px;
    border: 2px solid #ff8100;
    border-radius: 50%;
    background: none;
    -webkit-filter: url("#goo-12");
    filter: url("#goo-12");
    transform: trasnlate3d(0, 0, 0);
    pointer-events: none;
    overflow: hidden;
}

.checkbox-wrapper .cbx svg {
    position: absolute;
    top:10px;
    left: 4px;
    z-index: 1;
    pointer-events: none;
}

.checkbox-wrapper .cbx svg path {
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 19;
    stroke-dashoffset: 19;
    transition: stroke-dashoffset 0.3s ease;
    transition-delay: 0.2s;
}

.checkbox-wrapper .cbx input:checked  {
    animation: splash-12 0.6s ease forwards;
}

.checkbox-wrapper .cbx input:checked + label + svg path {
    stroke-dashoffset: 0;
}

@-moz-keyframes splash-12 {
    40% {
        background: #ff5d2d;
        box-shadow: 0 -18px 0 -8px #ff5d2d, 16px -8px 0 -8px #ff5d2d, 16px 8px 0 -8px #ff5d2d, 0 18px 0 -8px #ff5d2d, -16px 8px 0 -8px #ff5d2d, -16px -8px 0 -8px #ff5d2d;
    }
    100% {
        background: #ff5d2d;
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
}

@-webkit-keyframes splash-12 {
    40% {
        background: #ff5d2d;
        box-shadow: 0 -18px 0 -8px #ff5d2d, 16px -8px 0 -8px #ff5d2d, 16px 8px 0 -8px #ff5d2d, 0 18px 0 -8px #ff5d2d, -16px 8px 0 -8px #ff5d2d, -16px -8px 0 -8px #ff5d2d;
    }
    100% {
        background: #ff5d2d;
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
}

@-o-keyframes splash-12 {
    40% {
        background: #ff5d2d;
        box-shadow: 0 -18px 0 -8px #ff5d2d, 16px -8px 0 -8px #ff5d2d, 16px 8px 0 -8px #ff5d2d, 0 18px 0 -8px #ff5d2d, -16px 8px 0 -8px #ff5d2d, -16px -8px 0 -8px #ff5d2d;
    }
    100% {
        background: #ff5d2d;
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
}

@keyframes splash-12 {
    40% {
        background: #ff5d2d;
        box-shadow: 0 -18px 0 -8px #ff5d2d, 16px -8px 0 -8px #ff5d2d, 16px 8px 0 -8px #ff5d2d, 0 18px 0 -8px #ff5d2d, -16px 8px 0 -8px #ff5d2d, -16px -8px 0 -8px #ff5d2d;
    }
    100% {
        background: #ff5d2d;
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
}