* {
    font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
    overflow-x: hidden;
}

.content {
    display: flex;
    height: 100%;
    justify-content: space-between;
}

.left, .right {
    height: 100%;
    min-height: calc(100vh - 32px);
    margin: 16px;
}

.left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-form {
    width: 70%;
    max-width: 400px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    margin: auto 0;
    text-align: center;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

.login-form form {
    padding: 0 48px 24px 48px;
}

.login-form h5 {
    color: #344767;
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
    font-size: 1.25rem;
}

.login-form label {
    position: absolute;
    top: -10rem;
    left: 0;
    color: #344767;
}

.login-form p {
    color: #67748e;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 24px;
}

.login-form .oauth {
    padding: 12px 24px;
    margin-bottom: 12px;
}

.login-form button {
    background-color: #3476e4;
    border-radius: 8px;
    border: none;
    color: #fff;
    font-size: 14px;
    padding: 10px 20px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.login-form button:hover {
    box-shadow: 0 0.5em 0.5em -0.4em #3476e4;
    transform: translateY(-0.25em);
}

.login-form input {
    border-color: rgb(210, 214, 218);
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 12px;
    margin-bottom: 1.5rem;
}

.login-form a {
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-transform: none;
    text-decoration: none;
    font-weight: 700;
    transition: 0.15s ease-in;
    user-select: none;
    padding: 0.5rem 2rem;
    color: #67748e;
    letter-spacing: -0.4px;
    align-items: center;
    font-size: 12px;
    border-radius: 8px;
}

.login-form a:hover {
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.login-form a img {
    margin-right: 3px;
    vertical-align: middle;
    width: 20px;
}

.mask {
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0.4;
    border-radius: 12px;
    background-position: 50%;
    background-image: linear-gradient(310deg, #5e72e4, #825ee4);
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.15);
}

.right {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 12px;
    width: 48%;
    background-size: cover;
}

.right .mask-content {
    z-index: 2;
    text-align: center;
    color: #fff;
}

.right .mask-content h5 {
    opacity: 1;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.8px;
    margin-bottom: 24px;
}

.right .mask-content p {
    text-align: center;
    margin: -10px 0 0 0;
    padding: 0 10%;
    line-height: 1.625;
}

.notification-container {
    z-index: 999;
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.notification {
    display: none;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0.25rem 0.375rem -0.0625rem hsla(0deg, 0%, 8%, 0.12), 0 0.125rem 0.25rem -0.0625rem hsla(0deg, 0%, 8%, 0.07);
    width: 350px;
    height: fit-content;
    margin-top: 15px;
    transition: 0.3s;
}

.notification h5 {
    margin: 0;
}

.notification .notification-title {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    border-bottom: 1px solid #e6e6e6;
}

.notification .notification-title span {
    color: #0e1f47;
    cursor: pointer;
}

.notification .notification-title h5 {
    font-size: 14px;
    font-weight: 600;
    vertical-align: middle;
    margin: 0;
}

.notification .notification-title h5::before {
    margin-right: 4px;
    font-size: 18px;
    vertical-align: text-top;
    font-family: "Material Icons";
}

.notification .notification-content {
    padding: 8px 12px 12px 12px;
    word-break: break-word;
}

.notification p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.warning .notification-title {
    color: #F8AC16;
}

.warning .notification-title h5::before {
    content: "warning_amber";
}

.error .notification-title {
    color: #f5365c;
}

.error .notification-title h5::before {
    content: "error_outline";
}

.info .notification-title {
    color: #169FF8;
}

.info .notification-title h5::before {
    content: "info";
}

@media screen and (max-width: 1024px) {
    .left {
        width: 100%;
    }

    .right {
        display: none;
        margin: 0;
    }
}

.loading .loader {
    --path: #2F3545;
    --dot: #5628EE;
    --duration: 3s;
    width: 44px;
    height: 44px;
    position: relative;
}

.loading .loader:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    display: block;
    background: var(--dot);
    top: 37px;
    left: 19px;
    transform: translate(-18px, -18px);
    animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loading .loader svg {
    display: block;
    width: 100%;
    height: 100%;
}

.loading .loader svg rect,
.loading .loader svg polygon,
.loading .loader svg circle {
    fill: none;
    stroke: var(--path);
    stroke-width: 10px;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.loading .loader svg polygon {
    stroke-dasharray: 145 76 145 76;
    stroke-dashoffset: 0;
    animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loading .loader svg rect {
    stroke-dasharray: 192 64 192 64;
    stroke-dashoffset: 0;
    animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loading .loader svg circle {
    stroke-dasharray: 150 50 150 50;
    stroke-dashoffset: 75;
    animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loading .loader.triangle {
    width: 48px;
}

.loading .loader.triangle:before {
    left: 21px;
    transform: translate(-10px, -18px);
    animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

@keyframes pathTriangle {
    33% {
        stroke-dashoffset: 74;
    }
    66% {
        stroke-dashoffset: 147;
    }
    100% {
        stroke-dashoffset: 221;
    }
}

@keyframes dotTriangle {
    33% {
        transform: translate(0, 0);
    }
    66% {
        transform: translate(10px, -18px);
    }
    100% {
        transform: translate(-10px, -18px);
    }
}

@keyframes pathRect {
    25% {
        stroke-dashoffset: 64;
    }
    50% {
        stroke-dashoffset: 128;
    }
    75% {
        stroke-dashoffset: 192;
    }
    100% {
        stroke-dashoffset: 256;
    }
}

@keyframes dotRect {
    25% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(18px, -18px);
    }
    75% {
        transform: translate(0, -36px);
    }
    100% {
        transform: translate(-18px, -18px);
    }
}

@keyframes pathCircle {
    25% {
        stroke-dashoffset: 125;
    }
    50% {
        stroke-dashoffset: 175;
    }
    75% {
        stroke-dashoffset: 225;
    }
    100% {
        stroke-dashoffset: 275;
    }
}

.loading .loader {
    display: inline-block;
    margin: 0 16px;
}

.loading html {
    -webkit-font-smoothing: antialiased;
}

.loading * {
    box-sizing: border-box;
}

.loading *:before, .loading *:after {
    box-sizing: border-box;
}

.loading {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #F5F9FF;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.loading .loaders {
    position: absolute;
    top: 40%;
}

.loading .log {
    min-width: 380px;
    position: absolute;
    display: flex;
    flex-direction: column-reverse;
    top: 50%;
    max-height: 30%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

/*# sourceMappingURL=login.css.map */
