﻿.wl-login-page {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 100%;
    overflow: hidden;
}

.wl-login-blob {
    position: absolute;
    left: 50%;
    bottom: -34vw;
    width: 150vw;
    height: 68vw;
    max-height: 620px;
    max-width: 1400px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: linear-gradient(120deg, #f7b733 0%, #f2665a 28%, #e0328a 58%, #c2007a 85%);
    z-index: 0;
    pointer-events: none;
}

.wl-login-hero {
    position: relative;
    z-index: 1;
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 60px 60px 80px;
}

.wl-login-hero-title {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: #10141F;
    margin: 0 0 20px 0;
}

.wl-login-hero-subtitle {
    font-size: 22px;
    color: #5B6478;
    margin: 0;
    font-weight: 400;
}

.wl-login-panel {
    position: relative;
    z-index: 1;
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.wl-login-card {
    display: block !important;
    width: 100%;
    max-width: 440px;
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(16, 20, 31, 0.14);
    padding: 40px 44px;
    box-sizing: border-box;
}

.wl-login-logo {
    text-align: center;
    margin-bottom: 18px;
}

    .wl-login-logo img {
        max-width: 170px;
        width: 100%;
        height: auto;
    }

.wl-login-card-title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: #10141F;
    margin: 0 0 6px 0;
}

.wl-login-card-subtitle {
    text-align: center;
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 26px 0;
}

.wl-login-field {
    margin-bottom: 18px;
    text-align: left;
}

    .wl-login-field label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #1F2430;
        margin-bottom: 6px;
    }

.wl-login-input,
input.wl-login-input[type="text"],
input.wl-login-input[type="password"] {
    display: block;
    width: 100% !important;
    max-width: none !important;
    height: 46px;
    padding: 10px 14px;
    font-size: 14px;
    color: #1F2430;
    background-color: #FFFFFF;
    border: 1px solid #D8DCE3;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

    .wl-login-input:focus {
        outline: 0;
        border-color: var(--webapp-Magenta);
        box-shadow: 0 0 0 3px var(--webapp-box-shadow);
    }

.wl-login-password-wrap {
    position: relative;
}

    .wl-login-password-wrap .wl-login-input {
        padding-right: 40px;
    }

.wl-login-password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #8A93A6;
    cursor: pointer;
}

.wl-login-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.wl-login-remember.wl-checkbox {
    padding-left: 20px;
    margin: 0;
}

.wl-login-forgot.forgetpwd {
    font-size: 14px;
    text-decoration: underline;
}

.wl-login-btn-primary.wl-btn-noicon {
    display: block;
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #E2118C, #C2007A) !important;
}

    .wl-login-btn-primary.wl-btn-noicon:hover,
    .wl-login-btn-primary.wl-btn-noicon:focus,
    .wl-login-btn-primary.wl-btn-noicon:active {
        background: var(--webapp-Magenta-hover) !important;
        color: #FFFFFF !important;
    }

.wl-login-btn-secondary.wl-btn-noicon {
    display: block;
    width: 100%;
    margin-top: 12px;
    border-radius: 8px;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 700;
}

.wl-login-divider {
    border-top: 1px solid #E7E9EE;
    margin: 26px 0 18px 0;
}

.wl-login-apps-label {
    text-align: center;
    font-size: 13px;
    color: #6B7280;
    margin: 0 0 14px 0;
}

.wl-login-apps.wl-flex-center {
    justify-content: center;
    gap: 16px;
}

    .wl-login-apps.wl-flex-center .wl-login-badge {
        width: 130px;
        height: auto;
    }

.wl-login-status {
    text-align: center;
    padding: 10px 0;
}

@media only screen and (max-width: 900px) {
    .wl-login-hero {
        display: none;
    }

    .wl-login-panel {
        flex: 1 1 100%;
        padding: 30px 20px;
    }

    .wl-login-blob {
        bottom: -46vw;
        height: 90vw;
    }
}

@media only screen and (max-width: 480px) {
    .wl-login-card {
        padding: 30px 22px;
    }
}
