body {
    margin: 0;
    background: var(--background-color);
    height: 100vh;
    width: 100vw;
    font-family: "Inter", sans-serif;
    color: var(--text-color);
}

main {
    width: 100%;
    height: 100%;
    margin: auto;
    overflow: hidden;
}

form {
    background: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 32px 64px 48px;
    box-shadow: var(--login-form-shadow);
    height: 100%;
    box-sizing: border-box;
    padding-top: 15vh;
}

.login-form-bg {
    display: flex;
    width: 100%;
    height: 100%;
}

.login-form-wrapper {
    width: 500px;
    margin-left: auto;
    height: 100%;
    background: #fff;
    z-index: 10;
}

button {}

h1, h3 {
    font-family: Inter, ui-sans-serif;
    /* font-family: "Open Sans", sans-serif; */
    text-align: left;
    margin-bottom: 24px;
}

.login-form-title {
    text-align: center;
    margin-bottom: 44px;
}

h3 {
    font-weight: 400;
    font-size: 16px;
}

h1 {
    font-size: 24px;
}

.login-form-branding-side {
    position: relative;
    width: calc(100% - 500px);
}

input[type="login"], input[type="password"], input[type="email"], input[type="text"] {
    border: unset;
    width: 100%;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    padding: 12px 12px 12px 2px;
    font-size: 16px;
    /* border-radius: 6px; */
    outline: unset;
    background-color: transparent;
}

.input-container.login-container, .input-container.pass-container, .input-container.pass-repeat-container, .input-container.name-container {
    border: 1px solid rgba(145, 158, 171, 0.2);
    width: 100%;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    border-radius: 6px;
    padding: 0px 0px 0px 44px;
    overflow: hidden;
    position: relative;
    /* background: light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important; */
    border-color: var(--input-border-color);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.focused {
    box-shadow: 0px 1px 6px 1px rgb(0 0 0 / 4%);
}

.login-container {
    margin-bottom: 16px;
}

.input-container.pass-container {
    margin-bottom: 8px;
}

.input-container.login-container:before, .input-container.pass-container:before, .input-container.name-container:before {
    content: ' ';
    width: 18px;
    height: 18px;
    display: block;
    background-size: contain;
    z-index: 10;
    position: absolute;
    left: 12px;
    top: 14px;
    background-repeat: no-repeat;
    background-position: center;
    display: none;
}

span.login-icon {
    width: 16px;
    height: 16px;
    display: block;
    background-size: contain;
    z-index: 10;
    position: absolute;
    left: 12px;
    top: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

span.login-icon svg path {
    fill: var(--login-field-input-icon-color);
}

.input-container.remember-container {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 6px 6px 6px 6px;
    justify-content: center;
    margin-bottom: 24px;
}

#remember-me {
    margin-right: 8px;
    cursor: pointer;
}

button[type="submit"] {
    width: 100%;
    outline: unset;
    border: 1px solid;
    border-radius: 6px;
    padding: 14px 12px;
    font-size: 16px;
    cursor: pointer;
    transition: .2s;
    font-family: "Inter", sans-serif;
    background: var(--neutral-button-color-bg);
    color: var(--neutral-button-color-text);
    border-color: var(--neutral-button-color-bg);
    font-weight: 500;
}

button[type="submit"]:hover {
    background: #fff;
    transition: .2s;
    color: rgb(33, 43, 54);
    border-color: var(--neutral-button-color-text);
    color: var(--neutral-button-color-text);
}

.forgot-password-inner {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
}

.forgot-password-inner a {
    color: var(--neutral-color-text);
    text-decoration: unset;
    margin-left: 4px;
}

label {
    cursor: pointer;
}

#notice {
    text-align: center;
    font-size: 13px;
    color: #ff2323;
    white-space: nowrap;
    margin-top: 8px;
}

.login-form-action {
    position: relative;
}

.login-form-inner {
    width: 100%;
}

.register-inner {
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
}

.register-inner a {
    color: var(--neutral-color-text);
    text-decoration: unset;
    margin-left: 4px;
    font-weight: 600;
}

.registration-pass-line {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.has-account-inner {
    text-align: center;
    margin-top: 14px;
    font-size: 14px;
}

.has-account-inner a {
    color: #4275ea;
    text-decoration: unset;
    margin-left: 4px;
}

.input-container.pass-repeat-container {
    margin-bottom: 8px;
    padding-left: 0;
}

.input-container.name-container {
    margin-bottom: 16px;
}

.input-container.pass-repeat-container input {
    padding-left: 12px;
}

.login-form-alternate-method {
    text-align: left;
    margin-bottom: 12px;
}

.login-form-inner.with-logpass .login-form-alternate-method {
    text-align: center;
}

.login-by-or {
    font-size: 14px;
    text-align: center;
    width: 100%;
    margin: 16px 0;
}

.login-by-telegram-button {
}

.login-by-google-button {
    text-align: center;
    max-width: 220px;
    display: inline-block;
}

.google-sign-in-button {
    cursor: pointer;
    transition: background-color .3s, box-shadow .3s;
    padding: 12px 16px 12px 42px;
    border: none;
    border-radius: 6px;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
    background-color: white;
    background-repeat: no-repeat;
    background-position: 12px 11px;
}

.google-sign-in-button:hover {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 2px 4px rgba(0, 0, 0, .25);
}

.google-sign-in-button:active {
    background-color: #eeeeee;
}

.google-sign-in-button:active {
    outline: none;
    box-shadow:
            0 -1px 0 rgba(0, 0, 0, .04),
            0 2px 4px rgba(0, 0, 0, .25),
            0 0 0 3px #c8dafc;
}

.google-sign-in-button:disabled {
    filter: grayscale(100%);
    background-color: #ebebeb;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);
    cursor: not-allowed;
}

.project-login-bg {
    position: absolute;
    z-index: -1;
    opacity: 1;
    width: 100%;
    height: 100%;
}

.project-login-bg img {
    object-position: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.project-login-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-login-logo img {
    max-width: 320px;
}

@media screen and (max-width: 500px) {
    main {
        max-width: calc(100vw - 32px);
        min-width: unset;
    }

    form {
        padding: 16px 16px 48px;
    }

    input[type="login"], input[type="password"], input[type="email"], input[type="text"] {
        font-size: 14px;
    }
}
