:root {
        --primary: #28A745;
        --blue: #007BFF;
        --text-dark: #203645;
        --text-muted: #6B747D;
        --white: #FCFCFC;
        --border: #C4D4E0;
        --bg-light: #F2F2F2;

        --radius-sm: 10px;
        --radius-md: 12px;
        --radius-lg: 100px;
    }

    html, body {
        height: 100%;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    [v-cloak] {
        display: none;
    }

    a:hover, a:focus {
        text-decoration: none;
    }

    /* LEFT PANEL */

    .left-panel {
        min-height: 100vh;
        background: url('/partner-accountant/img/937payroll-bg.jpg');
        position: relative;
        color: var(--white);
        background-position: 30% center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .overlay {
        position: absolute;
        inset: 0;
    }

    .left-content {
        position: absolute;
        bottom: 70px;
        left: 70px;
        max-width: 28rem;
    }

    .left-title {
        font-size: 58px;
        font-weight: 700;
        line-height: 62px;
    }

    .left-divider {
        width: 64px;
        height: 4px;
        background: #fbbf24;
        margin: 32px 0;
    }

    .left-text {
        font-size: 20px;
        font-weight: 500;
        line-height: 27px;
    }

    /* RIGHT PANEL */

    .right-panel {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
    }

    .logo, .admin-title {
        text-align: center;
    }

    .logo {
        margin-bottom: 32px;
    }

    .admin-title {
        color: var(--text-dark);
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 32px;
    }

    /* FORM */

    .form-label {
        color: var(--text-dark);
        font-size: 14px;
        font-weight: 700;
    }
    .form-group>label,
    .form-label {
       text-align: left !important;
    }

    .form-control {
        height: 56px;
        padding: 16px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border);
        background: var(--white);
        color: var(--text-muted);
        font-size: 16px;
        font-weight: 500;
    }

    .form-control:focus {
        border-color: #b8c2cc;
        box-shadow: none;
    }

    .input-group-text {
        background: #fff;
        border-left: none;
        cursor: pointer;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        color: var(--text-dark);
        font-size: 14px;
        font-weight: 700;
    }

    /* LINKS */

    .forgot,
    .footer a {
        color: var(--blue);
        font-weight: 700;
    }

    .forgot:hover,
    .forgot:focus {
        color: var(--blue);
    }

    /* BUTTON */

    .login-btn {
        height: 56px;
        margin-top: 10px;
        padding: 16px 24px;
        border-radius: var(--radius-lg);
        border: 2px solid var(--primary);
        background: var(--primary);
        color: var(--white);
        font-size: 16px;
        font-weight: 700;
    }

    .login-btn:hover {
        color: #fff;
    }

    /* EMPLOYEE BOX */

    .employee-box {
        margin-top: 20px;
        padding: 20px 24px;
        border-radius: var(--radius-md);
        border: 1px solid #FBFBFB;
        background: var(--bg-light);
    }

    .employee-box strong {
        color: var(--text-dark);
        font-size: 20px;
        font-weight: 700;
    }

    .employee-box span {
        color: var(--text-muted);
        font-size: 16px;
        font-weight: 500;
    }

    .employee-box a {
        font-weight: 600;
    }

    /* FOOTER */

    .footer {
        text-align: center;
        color: #6c7a89;
        font-size: 14px;
        font-weight: 500;
        line-height: 24px;
    }

    @media only screen and (min-width: 1440px) {
        .employee-box {
            margin-top: 40px;
        }
        .footer {
        margin-top: 42px;
        }
    }

    @media only screen and (max-width: 1600px) {
        body {
            font-size: 0.8rem;
        }
        .logo img {
            max-width: 200px;
        }
        .admin-title {
            font-size: 24px;
        }
        .form-control {
            height: 45px;
            font-size: 14px;
        }
        .login-btn {
            height: 45px;
            padding: 10px 24px;
        }
        .footer {
            margin-top: 0;
        }
        .employee-box {
            margin-top: 24px;
        }
    }

    @media only screen and (max-width: 1440px) {
        .left-content {
            max-width: 586px;
        }
    }

    @media only screen and (max-width: 768px) {
        .login-wrapper {
            padding: 30px;
        }
    }