/* ==========================================
   LOGIN / REGISTER
========================================== */

.game-auth-page {
    min-height: calc(100vh - 100px);

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: 45px 15px 100px;
}


.game-auth-card {
    width: 100%;
    max-width: 440px;

    padding: 30px;

    background: #1b1e29;

    border: 1px solid #303442;
    border-radius: 18px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .25);
}


/* HEADER */

.game-auth-header {
    margin-bottom: 25px;

    text-align: center;
}


.game-auth-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #292d3d;

    border-radius: 15px;

    font-size: 26px;
}


.game-auth-header h1 {
    margin: 0;

    color: #fff;

    font-size: 25px;
    font-weight: 800;
}


.game-auth-header p {
    margin: 8px auto 0;

    max-width: 330px;

    color: #989dac;

    font-size: 13px;
    line-height: 1.5;
}


/* GOOGLE */

.game-google-btn {
    width: 100%;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    background: #fff;

    border: 1px solid #ddd;
    border-radius: 10px;

    color: #333 !important;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none !important;
}


.game-google-btn:hover {
    background: #f5f5f5;
}


.game-google-icon {
    width: 21px;
    height: 21px;
}


.game-google-icon svg {
    width: 100%;
    height: 100%;

    display: block;
}


/* DIVIDER */

.game-auth-divider {
    position: relative;

    margin: 25px 0;

    text-align: center;
}


.game-auth-divider::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 0;

    width: 100%;
    height: 1px;

    background: #333746;
}


.game-auth-divider span {
    position: relative;

    padding: 0 12px;

    background: #1b1e29;

    color: #777d8d;

    font-size: 11px;
}


/* LABEL */

.game-auth-label {
    display: block;

    margin-bottom: 7px;

    color: #d8dbe4;

    font-size: 12px;
    font-weight: 600;
}


/* INPUT */

.game-auth-input {
    width: 100%;
    height: 46px;

    padding: 0 13px;

    background: #242733 !important;

    border: 1px solid #363a49 !important;
    border-radius: 9px !important;

    color: #fff !important;

    font-size: 13px;
}


.game-auth-input::placeholder {
    color: #73798a;
}


.game-auth-input:focus {
    border-color: #7769ff !important;

    box-shadow:
        0 0 0 3px rgba(119, 105, 255, .12) !important;
}


/* FIELD */

.game-auth-form .mb-3 {
    margin-bottom: 17px !important;
}


/* PASSWORD */

.game-password-field {
    position: relative;
}


.game-password-toggle {
    position: absolute;

    right: 10px;
    top: 35px;

    width: 32px;
    height: 32px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;

    font-size: 15px;
}


/* REMEMBER */

.game-auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 3px 0 20px;
}


.game-auth-options .mb-3 {
    margin: 0 !important;
}


.game-auth-options label {
    color: #a7abba;

    font-size: 12px;
}


.game-forgot-link {
    color: #8c81ff;

    font-size: 12px;

    text-decoration: none;
}


/* BUTTON */

.game-auth-submit {
    width: 100%;
    height: 47px;

    border: 0;
    border-radius: 10px;

    background: #7567ff;

    color: #fff;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;
}


.game-auth-submit:hover {
    background: #6658ef;
}


/* ERROR */

.game-auth-error {
    display: block;

    margin-top: 5px;

    color: #ff647c;

    font-size: 11px;
}


/* BOTTOM */

.game-auth-bottom {
    margin-top: 22px;

    color: #9297a6;

    font-size: 12px;

    text-align: center;
}


.game-auth-bottom a {
    margin-left: 4px;

    color: #8c81ff;

    font-weight: 700;

    text-decoration: none;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .game-auth-page {
        padding:
            20px
            12px
            100px;
    }


    .game-auth-card {
        padding: 22px 17px;

        border-radius: 14px;
    }


    .game-auth-header h1 {
        font-size: 22px;
    }

}