html, body {
    width: 100%;
}

body {
    background-image: url('../images/index-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
    width: 100%;
}

.header {
    padding: 40px 0 0 40px;
}

.header-mv-logo {
    height: 30px;
}

.body {
    flex: 1 1 auto;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.body-inner {
    position: relative;
    width: clamp(100px, 100%, 1200px);
    margin: 0 auto;
    padding: 50px 0;
}

.body-inner > p {
    position: relative;
    z-index: 100;
}

.body-title {
    font-family: var(--font-oswald);
    font-size: clamp(2.25rem, 1.8295rem + 6.7273vw, 6.875rem);
    font-weight: bold;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 15px 0;
}

.body-title > span {
    color: #31589C;
}

.body-subtitle {
    font-family: var(--font-roboto);
    font-size: clamp(1.125rem, 1.0568rem + 1.0909vw, 1.875rem);
    color: #C3D4FC;
    margin: 15px 0 0 0;
}

.body-star {
    position: absolute;
    right: 0;
    bottom: 100px;
    z-index: 10;
    max-width: 55%;
}

.body-welcome {
    display: flex;
    max-width: 45%;
    position: relative;
    z-index: 100;
    margin: 100px 0 0 0;
}

.body-welcome > div:first-child {
    flex: 0 0 40px;
}

.body-welcome > div:last-child {
    padding: 0 0 0 20px;
}

.body-welcome > div:last-child > p {
    color: #C3D4FC;
    font-size: clamp(1rem, 0.9773rem + 0.3636vw, 1.25rem);
    font-family: var(--font-roboto);
    margin: 10px 0 0 0;
}

.body-welcome > div:last-child > p.body-welcome-title {
    color: #FF9C59;
    font-size: clamp(1.25rem, 1.1364rem + 1.8182vw, 2.5rem);
    font-family: var(--font-oswald);
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

.body-welcome-btn {
    margin: 50px 0 0 0;
    padding: 15px 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #091E3E;
    background: linear-gradient(90deg,rgba(9, 30, 62, 1) 0%, rgba(49, 88, 156, 1) 100%);
    border-radius: 200px;
    text-decoration: none;
    cursor: pointer;
}

.body-welcome-btn > div:first-child {
    font-size: clamp(1.25rem, 1.2273rem + 0.3636vw, 1.5rem);
    font-family: var(--font-oswald);
    color: #C3D4FC;
    text-transform: uppercase;
}

.body-welcome-icon {
    width: 40px;
}

.footer-inner {
    width: clamp(100px, 100%, 1200px);
    margin: 0 auto;
    padding: 30px 0;
}

.footer-rules {
    color: #2D4876;
    font-family: var(--font-roboto);
    font-size: clamp(0.75rem, 0.7386rem + 0.1818vw, 0.875rem);
}

.footer-rules > a {
    color: #2D4876;
}

.no-scroll {
    height: 100vh;
    overflow-y: hidden;
}

#auth {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #091E3E;
    z-index: 5000;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.auth-text {
    font-size: clamp(0.875rem, 0.713rem + 1.2963vw, 1.75rem);
    color: #C3D4FC;
    text-align: center;
    font-weight: bold;
    font-family: var(--font-roboto);
}

.auth-btn {
    background: #09A1A4;
    background: linear-gradient(90deg,rgba(9, 161, 164, 1) 0%, rgba(110, 208, 210, 1) 100%);
    border-radius: 100px;
    color: #FFFFFF;
    font-size: clamp(0.875rem, 0.713rem + 1.2963vw, 1.75rem);
    text-decoration: none;
    padding: 20px 50px;
}

.auth-loader {
    background-color: rgba(9, 30, 62, .9) !important;
}

@media (min-width: 1921px) {
    html, body {
        height: 100%;
    }
}

@media (max-width: 1200px) {
    .no-mob {
        display: none !important;
    }

    .header {
        padding: 20px 0 0 20px;
    }

    .body {
        padding: 50px 20px 30px 20px;
    }

    .body-inner {
        padding: 0;
    }

    .body-star {
        position: relative;
        max-width: 100%;
        margin: 20px 0;
        bottom: auto;
    }

    .body-welcome {
        max-width: 100%;
        margin: 0;
    }

    .body-welcome > div:first-child {
        flex: 0 0 20px;
    }

    .body-welcome-icon {
        width: 20px;
    }

    .body-welcome-btn {
        display: flex;
        margin: 30px 0 0 0;
        padding: 10px 0;
    }

    .footer-inner {
        padding: 30px 20px;
    }
}
