/*========================= LAYOUT =========================*/
body {
    background-image: linear-gradient(180deg, var(--color-green3) 0%, var(--color-green4) 100%);
    background-color: var(--color-green);
    background-repeat: no-repeat;
    background-attachment: local;
    background-size: cover;
    min-height: 100dvh;
}

#page-content {
    box-sizing: border-box;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.auth-navbar {
    display: flex;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-text {
    margin-left: 13px;
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
}

footer {
    color: var(--text-light-grey);
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 300;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.link-green {
    color: #8BFF75;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-decoration-line: underline;
    text-underline-position: from-font;
    display: inline-block;
    z-index: 2;
}
/*========================= LAYOUT END =========================*/

/*========================= BUTTONS =========================*/

.sm-btn.sm-btn-white,
.sm-btn.sm-btn-white:active {
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: #FFF;
    box-shadow: 0 1px 2px 0 rgba(47, 47, 50, 0.05);
}

.sm-btn.sm-btn-white:disabled {
    opacity: 0.4;
}

.sm-btn.sm-btn-grey,
.sm-btn.sm-btn-grey:active {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 1px 2px 0 rgba(47, 47, 50, 0.05);;
}

/*========================= BUTTONS END =========================*/
.info-block {
    padding: 56px 0;
}

.info-block .info-title {
    background: linear-gradient(90deg, var(--color-green1) 0%, var(--color-green2) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.info-block .info-text {
    color: var(--text-light-grey);
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    margin: 16px 0 0;
}

.content {
    max-width: 600px;
    margin: 0 auto;
    min-height: calc(100vh - 114px); /*padding 20px * 2 + header 36px + footer 18px*/
}

.auth-img-block {
    position: absolute;
    top: -50px;
    left: -39%;
    right: 0;
    z-index: 0;
}

.bg-img-auth {
    width: 123%;
}
