﻿
.login-container {
    width: 100%;
    height: 100vh;
    background-color: #141b24;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-container > .content {
    display: flex;
    flex-direction:column;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ---------------------------------------------------------------------------------------------------- */

.login-container > .content > .up {
    width: 100%;
    display: flex;
    flex-direction:column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px;
}

.login-container > .content > .up > .logo-box {
    width: 80px;
    height: 80px;
    background-color: #262f38;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.login-container > .content > .up > .logo-box > img {
    width: 40px;
    height: 40px;
}

.login-container > .content > .up > .title-box {
    max-width: 100%;
    display: flex;
    flex-direction:column;
    justify-content: flex-start;
    align-items: center;
}

.login-container > .content > .up > .title-box > h1 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.login-container > .content > .up > .title-box > p {
    color: #808080;
    font-size: 14px;
    margin-top: 8px;
}

/* ---------------------------------------------------------------------------------------------------- */

.login-container > .content > .down {
    width: 100%;
    height: 280px;
    background-color: #212a33;
    border-radius: 12px;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.login-container > .content > .down > p {
    color: #aeaeae;
    font-size: 14px;
    margin-bottom: 32px;
}

.login-container > .content > .down > .login-btn {
    width: 100%;
    height: 50px;
    background-color: #06C755;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.login-container > .content > .down > .login-btn > span {
    font-size: 16px;
    font-weight: 600;
}

/* ---------------------------------------------------------------------------------------------------- */

.login-container > .content > p {
    color: #555555;
    font-size: 12px;
    margin-top: 32px;
}

@media screen and (max-width: 767px) {
    .login-container > .content {
        width: 320px;
    }
}

@media screen and (min-width: 768px) {
    .login-container > .content {
        width: 380px;
    }
}