.header_sign {
    display: inline-block;
}

.header_sign {
    margin-left: auto;
    padding-top: 10px;
    vertical-align: middle;
    text-transform: uppercase;
}

.sign_in {
    color: #0d253e;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.sign_in {
    color: #0d253e;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.sign_in {
    display: inline-block;
    vertical-align: top;
    letter-spacing: 1px;
}

.header_sign .sign_in {
    margin-top: 7px;
}

.sign_in {
    margin-left: 6px;
    margin-right: 6px;
    padding: 8px 10px;
    text-decoration: none;
}

.sign_in:hover {
    text-decoration: underline;
}

.sign-in-page .main {
    padding: 100px 0;
    background-image: url(/static/images/combined-shape-sign-in.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left;
}

.sign-in-page .topbar {
    background-color: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.16);
    transform: translateY(0);
    transition: 0.4s;
}

.sign-in-page .topbar.hide {
    transform: translateY(-100%);
    transition: 0.4s;
}

.sign-in-page .topbar__left,
.sign-in-page .topbar__right {
    display: flex;
}

.sign-in-page .topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0 15px;
    margin-top: 100px;
}

.sign-in-page .topbar p {
    padding-left: 30px;
    font-size: 13px;
    color: #453283;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    letter-spacing: -0.04px;
    line-height: 18px;
}

.sign-in-page .topbar__create-pass {
    color: #453283;
    font-family: 'Nunito Sans Black';
    font-size: 13px;
    letter-spacing: -0.04px;
    line-height: 18px;
    text-transform: uppercase;
    display: table;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
}

.sign-in-page .topbar__create-pass:before {
    position: absolute;
    z-index: -1;
    content: '';
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #fce600;
    transition: 0.4s;
}

.sign-in-page .topbar__close {
    margin-left: 50px;
    background-image: url('/static/images/close-button.svg');
    background-size: 100% 100%;
    width: 15px;
    height: 15px;
    transition: 0.4s;
}

.sign-in-page .topbar__close:hover {
    opacity: 0.8;
}

.sign-in-page .back-to-sign-in {
    top: -90px;
    left: -50px;
    position: absolute;
    padding-left: 30px;
    font-size: 16px;
    line-height: 22px;
    color: #42337e;
    font-weight: 500;
    text-decoration: none;
}

.sign-in-page .back-to-sign-in:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    content: '';
    background-image: url('/static/images/left-arrow-link.svg');
    background-size: 100% 100%;
    width: 10px;
    height: 10px;
}

.sign-in-modal {
    margin: 0 auto;
    padding: 50px;
    max-width: 400px;
    height: 400px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 28px 53px 2px rgba(0, 0, 0, 0.1);
}

.sign-in-modal__title {
    font-size: 32px;
    font-weight: 600;
    font-family: 'Nunito Sans ExtraBold', sans-serif;
    color: #42337e;
    text-align: center;
}

.sign-in-modal__subtitle {
    margin-top: 15px;
    padding: 0 40px;
    font-size: 16px;
    line-height: 22px;
    color: #42337e;
    font-family: 'Nunito Sans', sans-serif;
}

.sign-in-modal__subtitle span {
    font-family: 'Nunito Sans ExtraBold', sans-serif;
}

.sign-in-modal__subtitle p {
    margin: 0;
    padding-bottom: 15px;
    font-family: 'Nunito Sans', sans-serif;
}

.sign-in-open {
    font-family: 'Nunito Sans Black';
    text-decoration: none;
    border-bottom: 2px solid #f8e71c;
}

.new-pass-open {
    margin: 40px auto 0;
    display: table;
}

.sign-in-modal__field {
    margin-top: 10px;
    position: relative;
}

.sign-in-modal__field:before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 16px;
    height: 16px;
    background-image: url('/static/images/error-red.svg');
    background-size: 100% 100%;
    transition: 0.4s;
    opacity: 0;
}

.sign-in-modal__field input {
    display: block;
    width: 100%;
    height: 60px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border: 2px solid #d7cbf4;
    color: #42337e;
    outline: none;
    transition: 0.4s;
}

.sign-in-modal__field input::-webkit-input-placeholder {
    color: #d7cbf4;
    transition: 0.4s;
}

.sign-in-modal__field input:-ms-input-placeholder {
    color: #d7cbf4;
    transition: 0.4s;
}

.sign-in-modal__field input::placeholder {
    color: #d7cbf4;
    transition: 0.4s;
}

.sign-in-modal__field input:focus::-webkit-input-placeholder {
    color: transparent;
}

.sign-in-modal__field input:focus:-ms-input-placeholder {
    color: transparent;
}

.sign-in-modal__field input:focus::placeholder {
    color: transparent;
}

.sign-in-modal__field input:focus {
    border-color: #42337e;
}

.sign-in-modal__field.error input {
    border-color: #e6402b;
    color: #e6402b;
}

.sign-in-modal__field.error:before {
    opacity: 1;
}

.sign-in-modal__field.error input::-webkit-input-placeholder {
    color: #e6402b;
}

.sign-in-modal__field.error input:-ms-input-placeholder {
    color: #e6402b;
}

.sign-in-modal__field.error input::placeholder {
    color: #e6402b;
}

.sign-in-modal__error {
    position: absolute;
    color: #e6402b;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
    width: 100%;
    font-size: 12px;
    opacity: 0;
    transition: 0.4s;
}

.sign-in-modal__field.error .sign-in-modal__error {
    opacity: 1;
}

.sign-in-modal__submit {
    width: 100%;
    margin-top: 10px;
    display: block;
    height: 60px;
    border: 0;
    border-radius: 4px;
    color: #42337e;
    background-color: #fce600;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Nunito Sans Black';
    font-size: 16px;
    letter-spacing: -0.05px;
    line-height: 22px;
    outline: 0;
    -webkit-transition: box-shadow 0.4s;
    transition: box-shadow 0.4s;
}

.sign-in-modal form {
    margin-top: 40px;
}

.sign-in-reset,
.reset-done,
.create-done,
.create-password {
    position: relative;
    display: none;
}

.sign-in-modal__forgot {
    margin: 7px auto 0;
    display: table;
    opacity: 0.7;
    color: #453283;
    font-family: 'Nunito Sans';
    font-size: 12px;
    font-weight: bold;
    letter-spacing: -0.04px;
    line-height: 16px;
    text-decoration: underline;
}

.sign-in-modal__done-icon {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1200px) {
    .sign-in-page .topbar p {
        max-width: 700px;
    }
}

@media screen and (max-width: 1024px) {
    .header_btns .sign_in[style] {
        display: inline-block;
    }
}

@media (max-width: 991px) {
    .sign-in-page .topbar p {
        padding-left: 15px;
        max-width: 500px;
    }
}

@media screen and (max-width: 780px) {
    .header_sign {
        padding-left: 0;
    }

    .sign-in-page .main {
        padding: 50px 0;
    }

    .sign-in-page .topbar .container {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .sign-in-page .topbar__close {
        position: absolute;
        top: 20px;
        right: 15px;
    }

    .sign-in-page .topbar__create-pass {
        margin-left: 35px;
        margin-bottom: 13px;
    }

    .sign-in-page .topbar p {
        padding-right: 25px;
    }

    .sign-in-modal {
        padding: 20px 25px;
    }

    .sign-in-modal__subtitle {
        padding: 0;
    }

    .sign-in-page .back-to-sign-in {
        top: -50px;
        left: -25px;
    }
}