﻿.auth-page {
    /*    background: radial-gradient(1100px 620px at 18% 8%, rgba(37, 99, 235, .14), transparent 58%), radial-gradient(900px 520px at 88% 0%, rgba(245, 158, 11, .10), transparent 56%), #ffffff;*/
    background-color: #ffffff;
}

/* Grid */
.auth-grid {
    display: grid;
    grid-template-columns: 0.75fr 0.85fr;
}

/* LEFT COLUMN */
.auth-left {
    border-right: 1px solid rgba(15, 23, 42, .08);
}

/* Remove any height constraints */
.auth-left-inner {
    width: 100%;
    height: auto;
}

/* Image fully natural */
.auth-image {
    display: block;
    width: 100%;
    height: auto;
}

/* RIGHT COLUMN */
.auth-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-right-inner {
    width: min(520px, 100%);
}

/* Prevent AdminLTE width interference */
.auth-page .login-box,
.auth-page .register-box {
    margin: 0;
    width: 100%;
}

/* Responsive */
@media (max-width: 980px) {

    .auth-grid {
        grid-template-columns: 1fr;
    }

    .auth-left {
        border-right: none;
        border-bottom: 1px solid rgba(15, 23, 42, .08);
    }

    .auth-image {
        width: 100%;
        height: auto;
    }

    .auth-right {
        padding: 28px 18px 40px;
    }
}
