* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #eef2f7;
    color: #0f172a;
}

a {
    text-decoration: none;
}

.zm-login-page {
    min-height: 90vh;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zm-login-shell {
    width: 100%;
    max-width: 1280px;
    min-height: 620px;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid #d9e1ec;
}

.zm-login-left {
    position: relative;
    background: linear-gradient(180deg, #071b49 0%, #0a275f 100%);
    color: #ffffff;
    overflow: hidden;
}

.zm-login-left-inner {
    position: relative;
    z-index: 2;
    padding: 68px 50px 54px;
    max-width: 620px;
}

.zm-login-logo-wrap {
    margin-bottom: 34px;
}

.zm-login-logo {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 18px rgba(35, 185, 255, 0.12));
}

.zm-login-left h1 {
    margin: 0 0 22px;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.zm-login-lead {
    margin: 0 0 34px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.96);
    max-width: 480px;
}

.zm-login-text {
    margin: 0 0 46px;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
    max-width: 480px;
}

.zm-login-contact {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
}

.zm-login-contact a {
    color: #1fd0ff;
    font-weight: 700;
}

.zm-login-left-circle {
    position: absolute;
    right: -60px;
    bottom: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(72, 199, 255, 0.18);
    z-index: 1;
}

.zm-login-right {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px;
}

.zm-login-form-wrap {
    width: 100%;
    max-width: 430px;
}

.zm-login-form-wrap h2 {
    margin: 0 0 12px;
    font-size: 54px;
    line-height: 1.05;
    font-weight: 800;
    color: #071b49;
    letter-spacing: -0.03em;
}

.zm-login-right-text {
    margin: 0 0 34px;
    font-size: 16px;
    line-height: 1.7;
    color: #5f718d;
}

.zm-login-error {
    margin-bottom: 18px;
    padding: 14px 16px;
    background: #fff1f2;
    color: #b42318;
    border: 1px solid #fecdd3;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
}

.zm-form-group {
    margin-bottom: 18px;
}

.zm-form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
   
    color: #071b49;
}

.zm-form-group input {
    width: 100%;
    height: 56px;
    border: 1px solid #d6dfeb;
    border-radius: 16px;
    background: #edf3fb;
    padding: 0 16px;
    font-size: 15px;
    color: #0f172a;
    outline: none;
    transition: 0.2s ease;
}

.zm-form-group input:focus {
    border-color: #25aee6;
    background: #f8fbff;
    box-shadow: 0 0 0 4px rgba(37, 174, 230, 0.12);
}

.zm-form-group input::placeholder {
    color: #8a9ab2;
}

.zm-password-wrap {
    position: relative;
}

.zm-password-wrap input {
    padding-right: 54px;
}

.zm-password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    color: #5b6b81;
    padding: 0;
    line-height: 1;
}

.zm-login-btn {
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #1688c9 0%, #22aee6 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 10px 24px rgba(34, 174, 230, 0.22);
}

.zm-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(34, 174, 230, 0.28);
}

.zm-login-info-box {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid #d6dfeb;
    border-radius: 16px;
    background: #f6f8fc;
    color: #5f718d;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .zm-login-shell {
        grid-template-columns: 1fr;
    }

    .zm-login-left-inner {
        padding: 42px 26px 34px;
    }

    .zm-login-right {
        padding: 30px 20px 34px;
    }

    .zm-login-form-wrap {
        max-width: 100%;
    }

    .zm-login-form-wrap h2 {
        font-size: 42px;
    }

    .zm-login-left h1 {
        font-size: 38px;
    }

    .zm-login-logo {
        max-width: 320px;
    }

    .zm-login-left-circle {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 640px) {
    .zm-login-page {
        padding: 10px;
    }

    .zm-login-shell {
        border-radius: 18px;
        min-height: auto;
    }

    .zm-login-left-inner {
        padding: 26px 18px 24px;
    }

    .zm-login-right {
        padding: 24px 16px 24px;
    }

    .zm-login-form-wrap h2 {
        font-size: 34px;
    }

    .zm-login-left h1 {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .zm-login-lead,
    .zm-login-text {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 22px;
    }

    .zm-login-logo {
        max-width: 250px;
    }

    .zm-form-group input,
    .zm-login-btn {
        height: 52px;
        border-radius: 14px;
    }

    .zm-login-info-box {
        font-size: 14px;
    }
}

.zm-login-links {
    margin-top: 16px;
    text-align: center;
}

.zm-login-links a {
    font-size: 14px;
    font-weight: 700;
    color: #2157c9;
    transition: color 0.2s ease;
}

.zm-login-links a:hover {
    color: #143c97;
}

/* =========================
   AUTH FOOTER (LOGIN ONLY)
========================= */

.zm-auth-footer {
    width: 100%;
    margin-top: 49px;
    padding: 14px 20px;
    background: linear-gradient(90deg, #071b49, #0a275f);
    color: #cbd5f5;
    font-size: 13px;
  
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.zm-auth-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* LINKS */
.zm-auth-footer-left {
    font-weight: 600;
}

/* CENTER TEXT */
.zm-auth-footer-center {
    opacity: 0.9;
}

/* LINKS */
.zm-auth-footer-links {
    display: flex;
    gap: 14px;
}

.zm-auth-footer-links a {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.zm-auth-footer-links a:hover {
    color: #ffffff;
}

/* RIGHT */
.zm-auth-footer-right {
    font-size: 12.5px;
    opacity: 0.9;
}

.zm-auth-footer-right strong {
    color: #38bdf8;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .zm-auth-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .zm-auth-footer-links {
        justify-content: center;
    }
}
.zm-login-logo-wrap.center {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.zm-login-logo {
    max-width: 380px;
}