html,
body {
    min-height: 100vh;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

html {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Proxima Nova, sans-serif;
    font-size: 17px;
    line-height: 22px;
    color: #201926;
    -webkit-font-smoothing: antialiased;
    background: #FAF5FF;
}

.backgroundLayer0 {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #f4f6fa;
    z-index: -3;
}

.backgroundLayer1 {
    width: 100%;
    height: 900px;
    max-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: radial-gradient(
        16.81% 38.78% at 18.92% 3.69%,
        #4d04ff 0%,
        rgba(76, 5, 255, 0) 100%
    ),
    radial-gradient(
        19.93% 45.99% at 32.36% 87.9%,
        rgba(4, 255, 41, 0.1) 0%,
        rgba(5, 255, 193, 0) 100%,
        rgba(5, 255, 43, 0) 100%
    ),
    radial-gradient(
        22.95% 52.96% at 99.03% 62.82%,
        #ff04e6 0%,
        rgba(255, 5, 230, 0) 100%
    ),
    linear-gradient(
        247.98deg,
        rgba(35, 255, 233, 0.248) 20.32%,
        rgba(91, 191, 255, 0.208) 33.65%,
        rgba(242, 166, 255, 0.176) 56.4%,
        rgba(255, 77, 68, 0.184) 82.18%
    ),
    linear-gradient(
        99.95deg,
        rgba(255, 223, 237, 0.8) 0%,
        rgba(255, 228, 246, 0.8) 23.43%,
        rgba(238, 226, 255, 0.8) 52.6%,
        rgba(230, 226, 255, 0.8) 80.21%,
        rgba(210, 233, 255, 0.8) 100%
    );
    background-blend-mode: soft-light, difference, soft-light, multiply, normal;
    opacity: 0.2;
    z-index: -2;
}

.backgroundLayer2 {
    width: 100%;
    max-height: 100%;
    position: fixed;
    left: 0;
    top: 400px;
    height: 500px;
    background: linear-gradient(180deg, rgba(244, 246, 250, 0) 0%, #f4f6fa 100%);
    z-index: -1;
}

.header {
    width: 100%;
    max-width: 1920px;
    height: 86px;
    padding: 16px 40px;
    margin: 0 auto;
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.header__logo {
    width: 140px;
    height: 48px;
}

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

.ButtonSubmit {
    background: #29004D;
    border-radius: 100px;
    padding: 16px 20px;
    text-align: center;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    width: 100%;
    color: #fff;
    border: 0;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

.ButtonSubmit:disabled {
    opacity: 0.4;
    pointer-events: none;
}

.ButtonSubmit:not(:last-of-type) {
    margin-bottom: 16px;
}

/* Paepr styles start */

.Paper {
    background: #FFFFFF;
    box-shadow: 0 5px 25px -5px rgba(12, 11, 13, 0.04);
    border-radius: 24px;
    padding: 32px 40px;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .Paper {
        padding: 32px 20px;
        max-width: 100%;
        width: 100%;
    }
}

.Paper a {
    text-decoration: none;
}

.Paper button {
    color: #fff;
}

.Paper__header {
    margin-bottom: 32px;
}

.Paper__header:last-child {
    margin-bottom: 16px;
}

.Paper__headerTitle {
    font-size: 28px;
    font-weight: bold;
    line-height: 34px;
    text-align: center;
    color: #201926;
}

.Paper__headerSubTitle {
    font-size: 17px;
    line-height: 22px;
    text-align: center;
    color: #78747A;
    margin-top: 8px;
}

.Paper__footer {
    margin: 32px -40px -32px;
    background: #F4F6FA;
    border-radius: 0 0 24px 24px;
    padding: 24px;
    font-size: 17px;
    line-height: 22px;
    text-align: center;
}

@media (max-width: 767px) {
    .Paper__footer {
        margin: 32px -20px -32px;
    }
}

.Paper__footerContent {
    margin-right: 4px;
    color: #78747A;
}

.Paper__footerLink {
    color: #29004D;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
}

.Paper__text {
  font-size: 17px;
  line-height: 22px;
  color: #201926;
}

.Paper__secondaryText {
    color: #78747A;
    line-height: 22px;
    font-size: 17px;
}

.Paper__text.bold {
  font-weight: 500;
}
/* Paepr styles end */


.Link,
.Link a {
    color: #005DAD;
    text-decoration: none;
}

.--alignLeft {
    text-align: left;
}

.Controls {
    width: 100%;
}

.Button {
    background: transparent;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-sizing: border-box;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.Button__gray {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.04);
}

.Button.disabled {
    pointer-events: none;
    opacity: 0.4;
}

.Provider__img {
    height: 24px;
    width: 24px;
    margin-right: 8px;
}

.Provider__title {
    font-size: 17px;
    line-height: 22px;
    color: #201926;
}

.LinkEmail .Paper__header {
    margin-bottom: 16px;
}

.LinkEmail .Paper__secondaryText {
    margin-bottom: 16px;
}

.InfoBlock {
    padding: 8px 16px;
    border-radius: 8px;
    background: #FFF5DA;
    display: flex;
    align-items: center;
    margin: 16px 0;
}

.InfoBlock__img {
    margin-right: 8px;
    height: 16px;
    width: 16px;
}

.InfoBlock__content {
    color: #AD7D00;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
}

.VerifyEmail__img {
    text-align: center;
    margin-bottom: 10px;
}

.VerifyEmail__img img {
    height: 152px;
    width: 152px;
}

.GauthWarning {
    font-size: 13px;
    line-height: 16px;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.GauthWarning p {
    margin: 8px 0;
}

.Divider {
    margin: 22px 0;
    color: #78747A;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

.Divider:after,
.Divider:before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
    .header {
        height: 64px;
        padding: 16px 20px;
        justify-content: center;
    }

    .header__logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 105px;
        height: 40px;
    }
}
