/* =========================
   GLOBAL RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0b1d2c;
}


/* =========================
   SIGN IN PAGE
========================= */

.signin-page {
    width: 100%;
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding: 60px 0;

    background: #0b1d2c;

    overflow: hidden;
}


/* =========================
   BACKGROUND IMAGE
========================= */

.signin-page::before {
    content: "";

    position: absolute;

    top: 0;
    right: -500px;
    bottom: 0;

    width: 92%;

    background-image: url("../images/signin_background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 0;
}


/* =========================
   SIGN IN CARD
========================= */

.signin-card {
    position: relative;
    z-index: 1;

    width: 500px;
    min-height: 600px;

    margin-left: 14%;

    padding: 65px 55px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: #ffffff;

    color: #0b1d2c;

    /* CENTER EVERYTHING INSIDE */
    text-align: center;
}


/* =========================
   SIGN IN BRANDING
========================= */

.signin-branding {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}


/* ATMOS LOGO */

.atmos-logo {
    width: 210px;
    height: auto;

    display: block;

    margin-left: auto;
    margin-right: auto;
}


/* LOYALTY TEXT */

.loyalty-text {
    width: 100%;

    margin-top: 25px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;

    text-align: center;

    color: #4b5563;
}


/* ALASKA + HAWAIIAN LOGO */

.airlines-logo {
    width: 230px;
    height: auto;

    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;

    display: block;
}


/* =========================
   SIGN IN CONTENT
========================= */

.signin-content {
    width: 100%;

    margin-top: 70px;

    display: grid;
    justify-items: center;

    text-align: center !important;
}


/* =========================
   SIGN IN TITLE
========================= */

.signin-content h1 {
    width: 100%;

    margin: 0 0 12px 0;

    text-align: center !important;

    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;

    color: #0b1d2c;
}


/* =========================
   SIGN IN DESCRIPTION
========================= */

.signin-content p {
    width: 100%;
    max-width: 340px;

    margin: 0;

    text-align: center !important;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;

    color: #5f6873;
}


/* =========================
   DISCORD SIGN IN BUTTON
========================= */

.roblox-signin {
    width: 100%;
    max-width: 390px;
    height: 48px;

    margin-top: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center !important;

    background: #a8dcf7;

    border-radius: 24px;

    font-size: 15px;
    font-weight: 500;

    color: #0b1d2c;
    text-decoration: none;

    transition: background 0.2s ease;
}

/* =========================
   DISCORD SIGN IN HOVER
========================= */

.roblox-signin:hover {
    background: #8fd0f2;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 800px) {

    .signin-page {
        padding: 30px 20px;

        justify-content: center;
    }

    .signin-page::before {
        right: 0;

        width: 100%;
    }

    .signin-card {
        width: 100%;
        max-width: 500px;

        min-height: 550px;

        margin-left: 0;

        padding: 50px 35px;
    }

}