/* =========================================================
   GR1P AUTH LAYOUT
========================================================= */

html,
body {
    margin: 0;
    padding: 0;
}

/* MAIN LAYOUT */

.gr1p-auth-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* =========================================================
   LEFT SIDE
========================================================= */

.gr1p-auth-left {
    width: 50%;
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px;
}

.gr1p-auth-content {
    width: 100%;
    max-width: 420px;
}

/* LOGO */

.gr1p-login-logo {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* TITLE */

.gr1p-auth-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    color: #111111;
    margin-bottom: 18px;
    text-align: center;
}

.gr1p-auth-description {
    color: #666666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

/* =========================================================
   FORM
========================================================= */

.gr1p-input {
    height: 56px;
    border-radius: 0.75rem !important;
    border: 1px solid #dddddd;
    padding-left: 16px;
    font-size: 15px;
}

.gr1p-input:focus {
    border-color: #000000;
    box-shadow: none;
}

/* LOGIN BUTTON */

.gr1p-login-btn {
    height: 56px;
    background: #000000 !important;
    color: #ffffff !important;
    border: none;
    border-radius: 0.75rem !important;

    font-size: 15px;
    font-weight: 600;

    transition: all 0.2s ease;
}

.gr1p-login-btn:hover {
    background: #1a1a1a !important;
    color: #ffffff !important;
}




/* =========================================================
   LOGIN FOOTER LINKS
========================================================= */

.gr1p-auth-footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    margin-top: 18px;
    color: #9ca3af;
}

.gr1p-auth-footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: 0.15s ease;
}

.gr1p-auth-footer-links a:hover {
    color: #111827;
}

.gr1p-auth-divider {
    color: #d1d5db;
}

/* login message spacing fix */
#loginMsg {
    font-size: 13px;
    text-align: center;
}
/* =========================================================
   RIGHT SIDE
========================================================= */

.gr1p-auth-right {
    width: 50%;
    position: relative;

    background:
        linear-gradient(
            rgba(0,0,0,0.58),
            rgba(0,0,0,0.58)
        ),
        url('../images/bg-login.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* CONTENT CENTERING */

.gr1p-auth-right-content {
    position: relative;
    z-index: 2;

    max-width: 650px;
    padding: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* TITLE */

.gr1p-auth-right-content h2 {
    color: #ffffff;

    font-size: 50px;
    font-weight: 700;
    line-height: 1.15;

    margin-bottom: 24px;
}

/* DESCRIPTION */

.gr1p-auth-right-content p {
    color: rgba(255,255,255,0.85);

    font-size: 17px;
    line-height: 1.7;

    margin-bottom: 40px;
}

/* =========================================================
   RIGHT SIDE BUTTONS
========================================================= */

.gr1p-right-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.gr1p-right-btn,
.gr1p-right-btn-outline {

    min-width: 220px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 0.75rem !important;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.2s ease;
}

/* WHITE BUTTON */

.gr1p-right-btn {
    background: #ffffff;
    color: #000000;
}

.gr1p-right-btn:hover {
    background: #f2f2f2;
    color: #000000;
}

/* OUTLINE BUTTON */

.gr1p-right-btn-outline {
    border: 1px solid rgba(255,255,255,0.5);
    color: #ffffff;
    background: transparent;
}

.gr1p-right-btn-outline:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}




/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    /* LOGIN */

    .gr1p-auth-layout {

        flex-direction: column !important;
    }

    .gr1p-auth-left,
    .gr1p-auth-right {

        width: 100% !important;
    }

    .gr1p-auth-left {

        padding: 50px 24px !important;
    }

    .gr1p-auth-right {

        min-height: 420px !important;
    }

    .gr1p-auth-title {

        font-size: 34px !important;
    }

    .gr1p-auth-right-content h2 {

        font-size: 30px !important;
    }
}