.login-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 380px;
    background-image: url('/wp-content/uploads/2026/04/auth-one-bg.jpg');
    background-position: center;
    background-size: cover;
}

.login-banner .bg-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    background-color: #1F2732;
    background: linear-gradient(to right, #1F2732, #445670);
    opacity: .9;
}

.login-banner .shape {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.login-banner .shape svg {
    width: 100%;
    height: auto;
    fill: #f3f3f9;
    vertical-align: middle;
}

.login-wrapper {
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 6px;
    padding: 50px 30px;
    box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
    width: 450px;
}

.login-wrapper .logo {
    width: 200px;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.login-wrapper .logo .icon {
    color: #ff6f00;
}

.login-wrapper .logo .text {
    color: #fff;
}

.login-wrapper h1 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 17px;
}

.login-wrapper > p {
    font-size: 13px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 26px;
}

.login-wrapper input[type=submit] {
    width: 100%;
}

@media screen and (max-width: 500px) {
    .login-wrapper {
        left: 10px;
        right: 10px;
        top: 120px;
        width: unset;
        padding: 30px 15px;
        transform: unset;
    }
}