/* =========================================================
   GLOBAL
   ========================================================= */

body {
    margin: 0;
    padding: 0;
    background: #f3f1ec;
    font-family: Arial, sans-serif;
}

/* =========================================================
   PAGE LAYOUT
   ========================================================= */

.page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* =========================================================
   LEFT PANEL
   ========================================================= */

.left-panel {

    background-image:
    url("gina_widget/app_images/send_portrait.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    min-height: 100vh;
}

/* =========================================================
   RIGHT PANEL
   ========================================================= */

.right-panel {

    background: #2f3646;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px;
}

/* =========================================================
   CONTENT
   ========================================================= */

.content {
    max-width: 520px;
}

.content{
    max-width:520px;
    text-align:center;
}

/* =========================================================
   NAME
   ========================================================= */

.name {

    color: white;

    font-size: 42px;
    font-weight: 300;

    letter-spacing: 10px;

    margin-bottom: 18px;
}

/* =========================================================
   TITLE
   ========================================================= */

.title {

    color: white;

    font-size: 18px;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 36px;
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.description {

    color: #e9e9e9;

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 38px;
}

/* =========================================================
   GINA BRAND CARD
   ========================================================= */

.gina-brand-card{
    width:100%;
    max-width:520px;

    display:block;

    margin:0 auto 34px auto;

    object-fit:contain;
}

.launch-button {

    display:inline-flex;

    padding: 16px 28px;

    border: 1px solid #d4af37;

    color: white;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 14px;

    transition: 0.25s;
}

.launch-button:hover {

    background: #d4af37;

    color: black;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 850px) {

    .page {
        grid-template-columns: 1fr;
    }

    .left-panel {
        min-height: 55vh;
    }

    .right-panel {
        padding: 40px 28px;
    }

    .name {
        font-size: 30px;
        letter-spacing: 6px;
    }
}
