﻿/*========================= LAYOUT =========================*/
.auth-container {
    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;
}

    .auth-navbar .navbar-brand {
        display: flex;
        align-items: center;
        z-index: 1;
    }

.logo-text {
    margin-left: 13px;
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
}

.auth-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 {
    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:hover,
    .sm-btn.sm-btn-white:focus,
    .sm-btn.sm-btn-white:active {
        background: #d7e6dd;
        color: black !important;
    }

    .sm-btn.sm-btn-white:disabled {
        opacity: 0.4;
    }

/*========================= BUTTONS END =========================*/
.info-block {
    padding: 56px 0;
}

    .info-block .info-block-image-box {
        position: relative;
        margin-bottom: 24px;
    }

    .info-block .image-shadow {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .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: 0;
    }

.info-joint-profile {
}

.info-joint-profile-text {
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 1px 2px 0 rgba(47, 47, 50, 0.05);
    border-radius: 58px;
    padding: 8px 16px;
    margin: 24px auto -26px;
    width: fit-content;
}

.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%;
}
