/* ==============================
   LOGIN COVER PAGE STYLES
================================ */

/* Full page background */
.authentication-bg {
    min-height: 100vh;
    background: linear-gradient(135deg, #7367F0 0%, #9f8cff 100%);
}

/* Left cover section */
.auth-cover-bg {
    background: linear-gradient(180deg, #7367F0, #5e50ee);
    position: relative;
    overflow: hidden;
}

.auth-cover-bg-color {
    width: 100%;
    height: 100%;
}

/* Illustration */
.auth-illustration {
    max-width: 80%;
    z-index: 2;
}

/* Background shape */
.platform-bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0.2;
}

/* Login card area */
.authentication-inner {
    min-height: 100vh;
}

/* Login box */
.w-px-400 {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* Headings */
h3 {
    color: #333;
}

/* Buttons */
.btn-primary {
    background-color: #7367F0;
    border-color: #7367F0;
}

.btn-primary:hover {
    background-color: #5e50ee;
    border-color: #5e50ee;
}

/* Social buttons */
.btn-label-facebook {
    color: #1877f2;
}

.btn-label-google-plus {
    color: #db4437;
}

.btn-label-twitter {
    color: #1da1f2;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .auth-cover-bg {
        display: none;
    }

    .w-px-400 {
        box-shadow: none;
        border-radius: 0;
    }
}
