
    .agent-login-section {
        min-height: 75vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 70px 20px;
        padding-bottom: 0px;
    }

    .agent-login-card {
        width: 100%;
        max-width: 460px;
        padding: 40px;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    }

    .agent-login-heading {
        margin-bottom: 30px;
        text-align: center;
    }

    .agent-login-heading h2 {
        margin-bottom: 8px;
        font-size: 30px;
        font-weight: 700;
        color: #1d2939;
    }

    .agent-login-heading p {
        margin: 0;
        color: #667085;
        font-size: 15px;
    }

    .agent-form-group {
        margin-bottom: 20px;
    }

    .agent-form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 600;
        color: #344054;
    }

    .agent-form-control {
        width: 100%;
        height: 50px;
        padding: 10px 15px;
        border: 1px solid #d0d5dd;
        border-radius: 8px;
        font-size: 15px;
        outline: none;
        transition: 0.3s;
    }

    .agent-form-control:focus {
        border-color: #101828;
        box-shadow: 0 0 0 3px rgba(16, 24, 40, 0.08);
    }

    .agent-password-wrapper {
        position: relative;
    }

    .agent-password-wrapper .agent-form-control {
        padding-right: 50px;
    }

    .toggle-agent-password {
        position: absolute;
        top: 50%;
        right: 15px;
        border: 0;
        background: transparent;
        transform: translateY(-50%);
        cursor: pointer;
        color: #667085;
    }

    .agent-login-options {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
        font-size: 14px;
    }

    .agent-remember {
        display: flex;
        align-items: center;
        gap: 7px;
        margin: 0;
        cursor: pointer;
        color:black;
    }

    .agent-forgot-link {
        color: #101828;
        font-weight: 600;
        text-decoration: none;
    }

    .agent-login-button {
        width: 100%;
        height: 50px;
        border: 0;
        border-radius: 8px;
        background: #101828;
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

    .agent-login-button:hover {
        background: #344054;
    }

    .agent-alert {
        margin-bottom: 20px;
        padding: 13px 15px;
        border-radius: 8px;
        font-size: 14px;
    }

    .agent-alert-danger {
        background: #fef3f2;
        border: 1px solid #fecdca;
        color: #b42318;
    }

    .agent-alert-success {
        background: #ecfdf3;
        border: 1px solid #abefc6;
        color: #067647;
    }

    .agent-field-error {
        display: block;
        margin-top: 6px;
        color: #d92d20;
        font-size: 13px;
    }

    @media (max-width: 575px) {
        .agent-login-card {
            padding: 30px 22px;
        }

        .agent-login-heading h2 {
            font-size: 25px;
        }
    }

    .toggle-agent-password {
        position: absolute;
        top: 50%;
        right: 14px;
        width: 36px;
        height: 36px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 6px;
        background: transparent;
        color: #667085;
        transform: translateY(-50%);
        cursor: pointer;
    }

    .toggle-agent-password:hover {
        background: #f2f4f7;
        color: #101828;
    }

    .toggle-agent-password:focus {
        outline: 2px solid rgba(16, 24, 40, 0.15);
    }

    .toggle-agent-password svg {
        width: 21px;
        height: 21px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .password-icon-hidden {
        display: none;
    }
