body {
    margin: 0;
    font-family: Gilroy, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f5f8fd;
    color: #67748E;
}

.login-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.login-left {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

@media only screen and (max-width: 479px) {
    .login-left {
        width: calc(100vw - 40px);
    }
}

.login-form {
    width: 350px;
    max-width: 100%;
    margin: auto;
}

h1 {
    font-size: 26px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

    form label {
        margin-bottom: 8px;
        font-size: 15px;
        font-weight: 700;
    }

    form input {
        margin-bottom: 15px;
        padding: 12px 15px;
        font-size: 17px;
        border: 1px solid #BEC8DA;
        border-radius: 4px;
        font-family: Gilroy, sans-serif;
    }

    form button {
        padding: 10px;
        background-color: #006EB7;
        color: white;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        cursor: pointer;
        font-family: Gilroy, sans-serif;
        font-weight: 700;
    }

        form button:hover {
            background-color: #005B99;
        }

.remember-me {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 15px;
}

    .remember-me input {
        margin-right: 10px;
    }

.or-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

    .or-divider span {
        background: white;
        padding: 0 10px;
        font-size: 14px;
    }

    .or-divider::before, .or-divider::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 40%;
        height: 1px;
        background: #ddd;
    }

    .or-divider::before {
        left: 0;
    }

    .or-divider::after {
        right: 0;
    }

.social-login {
    display: flex;
    justify-content: center;
}

    .social-login a {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 1px solid #ddd;
        background-size: cover;
        cursor: pointer;
        margin-left: 10px;
        margin-right: 10px;
        background-size: 28px;
        background-repeat: no-repeat;
        background-position: center;
    }

        .social-login a.Google {
            background-image: url("../images/google-icon.webp");
        }

        .social-login a.Microsoft {
            background-image: url("../images/microsoft-icon.webp");
        }

        .social-login a.OpenIdConnect {
            background-image: url("../images/openid.png");
        }

footer {
    text-align: center;
    font-size: 12px;
}

    footer p {
        margin: 0;
    }

.login-right {
    flex: 1;
    background: linear-gradient(135deg, #006EB7, #89CFF0);
    background: url("../images/field-bg.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 479px) {
    .login-right {
        display: none;
    }
}

.login-right .branding {
    text-align: center;
    position: relative;
    margin-bottom: 5vh;
}

    .login-right .branding #logo {
        position: relative;
        width: 450px;
        max-width: 100%;
        filter: drop-shadow(0 5px 35px rgba(25, 42, 75, 0.25));
    }

    .login-right .branding #inner, .login-right .branding #outer {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

@keyframes spin-clockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-counter-clockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

#outer {
    animation: spin-clockwise 18s linear infinite;
}

#inner {
    animation: spin-counter-clockwise 20s linear infinite;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
/*# sourceMappingURL=style.css.map */
