.form,
body {
    display: flex
}

.form,
.header {
    text-align: center
}

body,
button,
div,
form,
h1,
input {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font: 14px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f4f4;
    justify-content: center;
    align-items: center;
    height: 100vh
}

.container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    padding: 20px;
    width: 100%;
    max-width: 400px
}

.alert,
.section,
.section-reg {
    max-width: 100%
}

.header {
    color: #333;
    margin-bottom: 20px
}

.form {
    flex-direction: column
}

.form-label,
.screen-header {
    display: block;
    font-weight: 700
}

.form-group {
    margin-bottom: 15px;
    position: relative
}

.form-group-left {
    margin-bottom: 22px;
    position: relative;
    text-align: left
}

.form-label {
    margin-bottom: 5px;
    color: #555;
    font-size: 14px
}

.screen-header {
    margin-bottom: 18px;
    color: #000;
    font-size: 24px
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    background-color: #607d8b05
}

.back-button,
.submit-button {
    padding: 15px;
    width: 100%;
    font-size: 16px;
    cursor: pointer
}

.form-input:focus {
    border-color: #007bff;
    outline: 0
}

.submit-button {
    background-color: #f80590;
    color: #fff;
    border: none;
    border-radius: 12px
}

    .back-button:hover,
    .submit-button:hover {
        background-color: #2198ff
    }

    .submit-button:disabled {
        background-color: #e9abce;
        pointer-events: none
    }

.back-button {
    background-color: #f0f0f0 !important;
    color: #000 !important;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    margin-top: 22px;
    margin-bottom: 24px
}

.inner,
.outer {
    border-radius: 50%
}

.div-header {
    background-color: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, .1);
    padding: 30px 20px 20px;
    width: 100%;
    text-align: center;
    position: fixed;
    top: 0
}

.logo,
.logo-inner {
    background-image: url('logo.svg');
    width: 217px;
    height: 32px
}

.logo {
    fill: none;
    margin: auto
}

.outer {
    display: grid;
    place-items: center;
    background-color: #0fce7e40;
    height: 130px;
    width: 130px;
    margin-left: 36%
}

.inner {
    background-color: #0fce7e;
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center
}

    .inner::before {
        content: "";
        width: 44px;
        height: 19px;
        border: solid #fff;
        border-width: 0 0 6px 6px;
        border-radius: 0;
        transform: rotate(-43deg);
        margin-top: -12px
    }

.hr {
    opacity: .3
}

.hr-reg-email {
    opacity: .3;
    margin-top: 28px;
    margin-bottom: 20px
}

.eye,
.eye-slash {
    width: 16px;
    margin: auto;
    height: 16px;
    fill: none
}

.eye {
    background-image: url('eye.svg')
}

.eye-slash {
    background-image: url('eye-slash.svg')
}

.password-container {
    position: relative;
    display: flex;
    align-items: center
}

.input-field {
    padding: 16px;
    width: 100%;
    font-size: 16px;
    border: 0 solid #000;
    border-radius: 10px;
    background-color: #80808021
}

button.toggle-password {
    position: absolute;
    right: 12px;
    background: 0 0;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    display: grid
}

.alert {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-align: left
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
}

    .alert-error strong {
        display: block;
        margin-bottom: 5px
    }

.alert.success {
    background-color: #d4edda;
    color: #155724
}

.alert.error {
    background-color: #f8d7da;
    color: #ad4c45
}

.alert.warning {
    background-color: #fff3cd;
    color: #856404
}

.password-error {
    color: #dba404;
    font-size: 14px
}

.password-warning {
    color: #e6af0d;
    font-size: 14px;
    margin-bottom: 20px
}

.hidden {
    display: none
}

.show {
    display: block
}

.submit-button-disabled {
    background: #f5badc;
    pointer-events: none
}

.login-flow-section {
    background-color: #fff;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
    box-shadow: rgba(100, 100, 111, .2) 0 7px 29px 0;
    border-radius: 14px
}

.tnc {
    font-size: 16px;
    color: gray;
    font-weight: 400;
    padding-top: 10px
}

.ssl,
.tnc-link {
    font-weight: 600
}

.tnc-link {
    color: #f80590
}

.ssl-icon {
    background-image: url('lock.svg');
    width: 16px;
    height: 16px;
    fill: none;
    margin-right: 6px
}

.ssl {
    padding-top: 16px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center
}

.header-email,
.screen-header-description {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 16px
}

.screen-header-description {
    color: gray
}

.header-email {
    color: #000
}

.switch-link-icon {
    background-image: url('switch.svg');
    width: 16px;
    height: 14px;
    fill: none;
    margin: auto 6px auto auto;
    display: inline-block
}

.header-reg-code,
.wait-section {
    margin-bottom: -10px !important;
    color: gray;
    font-weight: 600
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999
}

    .loader::after {
        content: '';
        border: 5px solid #f7cce5;
        border-top: 5px solid #f80590;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        animation: .7s linear infinite spin
    }

@keyframes spin {
    0% {
        transform: rotate(0)
    }

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

.content {
    padding: 5px
}

.link-forgot-password {
    display: block;
    float: right
}

.header-reg-code {
    display: block;
    font-size: 16px
}

.wait-section {
    display: block;
    font-size: 20px
}

.reg-change-email,
.separator {
    display: flex
}

.header-reg-email {
    color: #f80590;
    font-weight: 600;
    font-size: 16px
}

#reg-flow-alert {
    margin-bottom: 0 !important;
    max-width: 100%;
    margin-top: 30px
}

.reg-ver-code-send {
    text-align: center;
    font-size: 16px;
    color: gray;
    font-weight: 400
}

.reg-ver-code-send-link {
    font-size: 16px;
    color: #2198ff
}

.code-resend,
.code-resend-link {
    font-size: 14px;
    font-weight: 600
}

.code-resend {
    margin: 0
}

.btn-alt,
.continue-password {
    margin-top: 20px
}

.code-resend-link {
    color: #2198ff
}

.form-group-left-ver-code {
    margin-bottom: 25px;
    position: relative;
    text-align: center;
    font-weight: 600;
    text-decoration: underline
}

.section {
    padding: 40px;
    width: 600px
}

.forgot-pwd-link {
    color: #000;
    font-weight: 600
}

input::placeholder {
    color: gray;
    font: 16px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif
}

.continue {
    font-weight: 600
}

.btn-alt {
    background-color: #f0f0f0 !important;
    color: #000 !important;
    font-weight: 600
}

.btn-alt-disabled {
    color: gray !important
}

.separator {
    align-items: center;
    text-align: center;
    font-size: 16px;
    color: gray;
    font-weight: 600
}

    .separator::after,
    .separator::before {
        content: '';
        flex: 1;
        border-bottom: 2px solid #80808075
    }

    .separator:not(:empty)::before {
        margin-right: .75em
    }

    .separator:not(:empty)::after {
        margin-left: .75em
    }

.close {
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px
}

    .close:hover {
        opacity: 1
    }

    .close:after,
    .close:before {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 26px;
        width: 2px;
        background-color: #555
    }

    .close:before {
        transform: rotate(45deg)
    }

    .close:after {
        transform: rotate(-45deg)
    }

.submit-button-bottom {
    margin-bottom: 24px
}

.power-container {
    background-color: #2e424d;
    width: 100%;
    height: 10px;
    border-radius: 13px;
    margin-top: 10px;
    /* margin-bottom: 40px */
}

    .power-container #power-point {
        background-color: #d73f40;
        width: 1%;
        height: 100%;
        border-radius: 5px;
        transition: .5s
    }

.power-point-text {
    padding-top: 10px
}

.submit-button-reg {
    margin-top: 14px;
    margin-bottom: 24px
}

.header-reg-code-pwd {
    padding-bottom: 15px
}

.reg-change-email-link {
    padding-top: 16px;
    padding-left: 12px
}

.reg-btn-alt {
    background-color: #e5e3e3 !important;
    color: #000 !important;
    margin-bottom: 20px
}

.signup-flow-section {
    background-color: #fff;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
    box-shadow: rgba(100, 100, 111, .2) 0 7px 29px 0;
    border-radius: 14px
}

.header-signup {
    color: gray;
    font-weight: 600;
    display: block;
    font-size: 16px
}

#btn-signup-init {
    margin-bottom: 8px !important;
}

#btn-login-init {
    margin-bottom: 8px !important;
}

#signup-have-account {
    margin-left: 6px;
}

#login-register-account {
    margin-left: 6px;
}

@keyframes autofillStart {
}

input:-webkit-autofill {
    animation-name: autofillStart;
    animation-duration: 0.01s;
    animation-iteration-count: 1;
}
