    :root {
        --primary: #0051ca;
        --primary-hover: #0052cc;
        --bg: #f4f6fa;
        --text-dark: #1c1e21;
        --text-light: #6b7280;
        --border: #d1d5db;
        --radius: 10px;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter', sans-serif;
    }

    body {
       background: linear-gradient(
            160deg,
            #0051ca 0%,
            #69a5ff 100%  
        );

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction:column;
        gap:20px;
        min-height: 100vh;
        padding: 20px;
    }

    .container {
        width: 100%;
        max-width: 430px;
        background: #fff;
        padding: 45px 40px;
        border-radius: var(--radius);
        box-shadow: 0 12px 35px rgba(0,0,0,0.12);
        animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(15px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .logo-container-client {
        text-align: center;
        margin-bottom: 28px;
    }

    .logo-container-client img {
        width: 190px;
    }

    label {
        display: block;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 6px;
        margin-top: 18px;
    }

    input {
        width: 100%;
        padding: 14px 15px;
        border-radius: var(--radius);
        border: 1px solid var(--border);
        font-size: 15px;
        transition: 0.2s;
    }

    input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(0,102,255,0.12);
        outline: none;
    }

    button {
        width: 100%;
        padding: 15px;
        background: var(--primary);
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        border: none;
        border-radius: var(--radius);
        cursor: pointer;
        margin-top: 26px;
        transition: background 0.25s;
    }

    button:hover {
        background: var(--primary-hover);
    }

    .link {
        display: block;
        font-size: 14px;
        margin-top: 8px;
        color: var(--primary);
        text-decoration: none;
        cursor: pointer;
    }

    .link:hover {
        text-decoration: underline;
    }

    .error-msg {
        display: none;
        margin-top: 16px;
        padding: 12px;
        font-size: 14px;
        border-radius: var(--radius);
        background: #ffe5e5;
        color: #b50000;
        text-align: center;
        border: 1px solid #ffbcbc;
    }

    .loading-spinner {
        display: none;
        margin-top: 14px;
        text-align: center;
    }

    .loading-spinner div {
        width: 32px;
        height: 32px;
        border: 4px solid var(--primary);
        border-top-color: transparent;
        border-radius: 50%;
        animation: spin 0.9s linear infinite;
        margin: auto;
    }

    @keyframes spin { to { transform: rotate(360deg); } }

    .footer {
        text-align: center;
        margin-top: 25px;
        color: var(--text-light);
        font-size: 16px;
        line-height: 1.5;
    }

    .copyrights p{
        color:white !important;
        text-align:center;
    }

    .client-social{
        display: flex;
        gap: 12px;
        justify-content: center;
        margin-bottom: 14px;
    }