﻿.jplm-login-body {
    background: linear-gradient(135deg, #ffffff, #fff6ee);
    min-height: 100vh;
}

.jplm-login-logo {
    max-height: 125px;
    animation: fadeDown 0.6s ease;
}

.jplm-login-card {
    background: #ffffff;
    border-radius: 18px;
    width: 22rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

    .jplm-login-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 18px;
        border: 2px solid transparent;
        background: linear-gradient(145deg, #1e1e1e, #303030, #4a4a4a) border-box;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        -webkit-mask-composite: destination-out;
        pointer-events: none;
        opacity: 0.8;
    }

.jplm-login-title {
    font-size: 1.25rem;
    color: #444;
    letter-spacing: 0.6px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    font-size: 1.2rem;
    margin-right: 25px;
}

    .password-toggle:hover {
        color: #303030;
    }

@media (max-width: 768px) {
    .jplm-login-logo {
        max-height: 90px !important;
    }
}