* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html {
    font-size: 10px;
}

:root {
    --container: 100%;
    --container-gutter: 10px;
    --gutter: 3px;
    --container-fluid: 100%;
    --heading-1: 2.2rem;
    --heading-2: 2.2rem;
    --heading-3: 3.0rem;
    --heading-4: 1.8rem;
    --heading-5: 1.4rem;
    --heading-6: 1.1rem;
    --font-size-body: 1.4rem;
    --bg-primary: white;
    --bg-second: black;
    --bg-1: #00693f;
    --bg-2: #83c240;
    --bg-3: #333;
    --bg-4: cornsilk;
    --bg-5: #00693f;
    --bg-6: #83c240;
    --bg-7: rgba(189, 165, 136, .1);
    --bg-10: #cccccc;
    --bg-11: #83c240;
    --color-primary: white;
    --color-second: black;
    --color-1: #00693f;
    --color-2: #83c240;
    --color-3: #333;
    --color-4: cornsilk;
    --color-5: #00693f;
    --color-6: #83c240;
    --color-7: #a5adb3;
    --color-border: #e6e6e6;
    --color-border-2: #1066a7;
    --font-heading-family: "Roboto", sans-serif;


    --font-body-family: "Roboto", sans-serif;
}

@media (min-width: 576px) {}

@media (min-width: 768px) {
    :root {
        --container: 830px;
        --gutter: 7px;
    }
}

@media (min-width: 992px) {
    :root {
        --container: 1100px;
        --heading-1: 2.8rem;
        --heading-2: 2.4rem;
        --heading-3: 3.0rem;
        --heading-4: 2.2rem;
        --heading-5: 1.4rem;
        --heading-6: 1.1rem;
        --font-size-body: 1.5rem;
        --container-gutter: 15px;

    }
}

@media (min-width: 1200px) {
    :root {
        --container: 1190px;

    }
}

@media (min-width: 1500px) {
    :root {
        --container: 1190px;
    }
}


/*------------------------------------*/
/* CHANG-DEFAULT */
/*------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: var(--font-size-body);
    font-family: var(--font-body-family);
    background: var(--bg-primary);
    color: var(--color-second);
    line-height: 1.6;
    font-weight: 400;
}

img {
    max-width: 100%;
    object-fit: cover;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--bg-second);
    font-size: 30px;
    font-weight: 600;

}

a:hover {}

p {
    padding-bottom: 15px;
}

input {
    border: 0;
}

label {
    font-weight: bold;
    display: block;
    font-size: 14px;
    margin-bottom: 0.4em;
}

.circle {
    border-radius: 100%;
}

/*------------------------------------*/
/* #CONTAINER */
/*------------------------------------*/
.ctnr {
    padding: 0 var(--container-gutter);
    margin: 0 auto;
    max-width: var(--container);
}

.ctnr-fluid {
    padding: 0 var(--container-gutter);
    margin: 0 auto;
    max-width: var(--container-fluid);
}

/*------------------------------------*/
/* #FONT */
/*------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.healine {
    margin: 0;
    word-break: break-word;
    line-height: 1.3;
    font-weight: 700;
    font-family: var(--font-heading-family);
}

.h1,
h1 {
    font-size: var(--heading-1);
}

.h2,
h2 {
    font-size: var(--heading-2);
}

.h3,
h3 {
    font-size: var(--heading-3);
}

.h4,
h4 {
    font-size: var(--heading-4);
}

.h5,
h5 {
    font-size: var(--heading-5);
}

.h6,
h6 {
    font-size: var(--heading-6);
}

.tt-up {
    text-transform: uppercase;
}

.tt-cap {
    text-transform: capitalize;
}

.td-none {
    text-decoration: none;
}

.td-underline {
    text-decoration: underline;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
    font-size: 18px;
    padding-top: 20px;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/*------------------------------------*/
/* #BUTTON */
/*------------------------------------*/
.btn,
button {
    cursor: pointer;
    border: 0;
    padding: 10px 20px;
    font-family: var(--font-body-family);
    font-weight: var(--font-heading-weight);
    transition: all .3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: inherit;
    word-break: break-all;
    font-size: var(--heading-6);
    background-color: transparent;
}

.btn-primary {
    color: var(--color-primary);
    background: var(--bg-second);
    border: 2px solid var(--bg-primary);

}

.btn-second {
    color: var(--color-second);
    background: transparent;
    border: 2px solid var(--bg-second);
}

/*------------------------------------*/
/* #HEIGHT */
/*------------------------------------*/
.h-100 {
    height: 100%;
}

.h-100v {
    height: 100vh;
}

.mah-100 {
    max-height: 100%;
}

.mah-100v {
    max-height: 100vh;
}

.h-500p {
    height: 500px;
}

.h-auto {
    height: auto;
}

/*------------------------------------*/
/* #WIDTH */
/*------------------------------------*/
.w-100 {
    width: 100%;
}

.w-100v {
    width: 100vw;
}

.w-auto {
    width: auto;
}

.maw-100 {
    max-width: 100%;
}

.miw-100 {
    min-width: 100%;
}

/*------------------------------------*/
/* #DISPLAY */
/*------------------------------------*/
.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.d-inline-flex {
    display: inline-flex;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.d-none {
    display: none;
}

/*------------------------------------*/
/* #DISPLAY-FLEX */
/*------------------------------------*/
.flex-1 {
    flex: 1;
}

.fg-1 {
    flex-grow: 1;
}

.fs-0 {
    flex-shrink: 0;
}

.fw-wrap {
    flex-wrap: wrap;
}

.fw-nowrap {
    flex-wrap: nowrap;
}

.fd-row {
    flex-direction: row;
}

.fd-row-reverse {
    flex-direction: row-reverse;
}

.fd-column {
    flex-direction: column;
}

.fd-column-reverse {
    flex-direction: column-reverse;
}

.js-between {
    justify-content: space-between;
}

.js-around {
    justify-content: space-around;
}

.js-center {
    justify-content: center;
}

.js-right {
    justify-content: right;
}

.js-left {
    justify-content: left;
}

.ai-flex-start {
    align-items: flex-start;
}

.ai-flex-end {
    align-items: flex-end;
}

.ai-center {
    align-items: center;
}

.ai-end {
    align-items: end;
}

/*------------------------------------*/
/* #TEXT-ALIGN */
/*------------------------------------*/
.ta-left {
    text-align: left;
}

.ta-right {
    text-align: right;
}

.ta-center {
    text-align: center;
}

/*------------------------------------*/
/* #POSITION */
/*------------------------------------*/
.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.p-fixed {
    position: fixed;
}

.p-sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.bottom-16 {
    bottom: 16px;
}

.middle-y {
    top: 50%;
    transform: translateY(-50%);
}

.middle-x {
    left: 50%;
    transform: translateX(-50%);
}

/*------------------------------------*/
/* #BORDER */
/*------------------------------------*/
.border-0 {
    border: 0;
}

.border-1 {
    border: 1px;
}

.border-2 {
    border: 2px;
}

.border-3 {
    border: 3px;
}

/*------------------------------------*/
/* #OVERLAY*/
/*------------------------------------*/
.overlay::after,
.overlay-white::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

.overlay::after {
    background-color: black;
    opacity: .3;
}

/*------------------------------------*/
/* #ROW-COLUMN */
/*------------------------------------*/
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0px calc(-1 * var(--gutter));
}

.clm {
    padding: 0 5px;
    /* nhỏ hơn biến --gutter */
}

[style*="--w-xs"] {
    width: calc(100%/12 * var(--w-xs));
    max-width: calc(100%/12 * var(--w-xs));
}

@media (min-width: 576px) {
    [style*="--w-sm"] {
        width: calc((100%/12) * var(--w-sm));
        max-width: calc((100%/12) * var(--w-sm));
    }
}

@media (min-width: 768px) {
    [style*="--w-md"] {
        width: calc((100%/12) * var(--w-md));
        max-width: calc((100%/12) * var(--w-md));
    }
}

@media (min-width: 992px) {
    [style*="--w-lg"] {
        width: calc((100%/12) * var(--w-lg));
        max-width: calc((100%/12) * var(--w-lg));
    }
}

@media (min-width: 1200px) {
    [style*="--w-xl"] {
        width: calc((100%/12) * var(--w-xl));
        max-width: calc((100%/12) * var(--w-xl));
    }

    .col-xl-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (min-width: 1500px) {
    [style*="--w-xxl"] {
        width: calc((100%/12) * var(--w-xxl));
        max-width: calc((100%/12) * var(--w-xxl));
    }

    .col-xl-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/*------------------------------------*/
/* #GRID */
/*------------------------------------*/
[style*="--gap-xs"] {
    gap: var(--gap-xs);
}

[style*="--gc-xs"] {
    grid-column: var(--gc-xs);
}

[style*="--gr-xs"] {
    grid-row: var(--gr-xs);
}

[style*="--gtc-xs"] {
    grid-template-columns: repeat(var(--gtc-xs), 1fr);
}

[style*="--gtr-xs"] {
    grid-template-rows: repeat(var(--gtr-xs), 1fr);
}

@media (min-width: 576px) {
    [style*="--gc-sm"] {
        grid-column: var(--gc-sm);
    }

    [style*="--gr-sm"] {
        grid-row: var(--gr-sm);
    }

    [style*="--gtc-sm"] {
        grid-template-columns: repeat(var(--gtc-sm), 1fr);
    }

    [style*="--gtr-sm"] {
        grid-template-rows: repeat(var(--gtr-sm), 1fr);
    }
}

@media (min-width: 768px) {
    [style*="--gap-md"] {
        gap: var(--gap-md);
    }

    [style*="--gc-md"] {
        grid-column: var(--gc-md);
    }

    [style*="--gr-md"] {
        grid-row: var(--gr-md);
    }

    [style*="--gtc-md"] {
        grid-template-columns: repeat(var(--gtc-md), 1fr);
    }

    [style*="--gtr-md"] {
        grid-template-rows: repeat(var(--gtr-md), 1fr);
    }
}

@media (min-width: 992px) {
    [style*="--gap-lg"] {
        gap: var(--gap-lg);
    }

    [style*="--gc-lg"] {
        grid-column: var(--gc-lg);
    }

    [style*="--gr-lg"] {
        grid-row: var(--gr-lg);
    }

    [style*="--gtc-lg"] {
        grid-template-columns: repeat(var(--gtc-lg), 1fr);
    }

    [style*="--gtr-lg"] {
        grid-template-rows: repeat(var(--gtr-lg), 1fr);
    }
}

@media (min-width: 1200px) {
    [style*="--gap-xl"] {
        gap: var(--gap-xl);
    }

    [style*="--gc-xl"] {
        grid-column: var(--gc-xl);
    }

    [style*="--gr-xl"] {
        grid-row: var(--gr-xl);
    }

    [style*="--gtc-xl"] {
        grid-template-columns: repeat(var(--gtc-xl), 1fr);
    }

    [style*="--gtr-xl"] {
        grid-template-rows: repeat(var(--gtr-xl), 1fr);
    }
}

@media (min-width: 1400px) {
    [style*="--gc-xxl"] {
        grid-column: var(--gc-xxl);
    }

    [style*="--gr-xxl"] {
        grid-row: var(--gr-xxl);
    }

    [style*="--gtc-xxl"] {
        grid-template-columns: repeat(var(--gtc-xxl), 1fr);
    }

    [style*="--gtr-xxl"] {
        grid-template-rows: repeat(var(--gtr-xxl), 1fr);
    }
}


html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.12), transparent 30%),
        #f6f8fb;
    color: #1f2937;
}

button,
input {
    font: inherit;
    border: none;
    outline: none;
}

a {
    color: inherit;
    text-decoration: none;
}

.login-page {
    min-height: 100vh;
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-page::before,
.login-page::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.login-page::before {
    width: 420px;
    height: 420px;
    background: rgba(34, 197, 94, 0.10);
    top: -140px;
    left: -120px;
}

.login-page::after {
    width: 520px;
    height: 520px;
    background: rgba(59, 130, 246, 0.10);
    right: -180px;
    bottom: -180px;
}

.login-card {
    width: 100%;
    max-width: none;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 42% 58%;
    background: rgba(255, 255, 255, 0.78);
    overflow: hidden;
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 70px rgba(15, 23, 42, 0.12);
}

.login-card-left {
    padding: 34px 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 244, 0.96));
    min-height: 100vh;
}

.login-card-left::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 26px;
    border: 1px solid rgba(34, 197, 94, 0.10);
    pointer-events: none;
}

.brand-pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #334155;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.brand-pill img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 50%;
}

.login-form-wrap {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.login-form-wrap h1 {
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    text-align: left;
    margin-bottom: 8px;
}

.login-subtitle {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input {
    width: 100%;
    height: 48px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 0 16px;
    color: #0f172a;
    transition: all .25s ease;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-group input:focus {
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.10);
}

.password-field {
    position: relative;
}

.password-field input {
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, 0.08);
    color: #16a34a;
    cursor: pointer;
    padding: unset;
}

.password-toggle svg {
    width: 16px;
    height: 16px;
}

.btn-login {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #22c55e 0%, #0ea5e9 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin-top: 12px;
    box-shadow: 0 14px 30px rgba(14, 165, 233, 0.18);
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(34, 197, 94, 0.18);
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.social-btn {
    height: 48px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    transition: all .25s ease;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.social-btn:hover {
    border-color: rgba(34, 197, 94, 0.25);
    transform: translateY(-1px);
}

.social-icon {
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}

.social-icon.google {
    color: #225eb9;
    font-weight: 800;
}

.login-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    font-size: 11px;
    color: #64748b;
    position: relative;
    z-index: 1;
}

.login-footer span {
    font-size: 14px;
    line-height: 1.4;
}

.login-footer a {
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

.login-card-right {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.22)),
        linear-gradient(145deg, #eff6ff 0%, #ffffff 55%, #f8fafc 100%);
    min-height: 100vh;
}

.close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #334155;
    font-size: 26px;
    z-index: 3;
    cursor: pointer;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 680px;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.98;
    filter: saturate(0.96) contrast(1.02);
}

.hero-image-wrap::before,
.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-image-wrap::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.22));
}

.hero-image-wrap::after {
    background:
        radial-gradient(circle at 70% 18%, rgba(34, 197, 94, 0.18), transparent 18%),
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.14), transparent 20%);
}

.floating-badge {
    position: absolute;
    z-index: 2;
    border-radius: 16px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
}

.badge-top {
    top: 22px;
    left: 26px;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
}

.badge-bottom {
    bottom: 112px;
    left: 90px;
    background: rgba(255, 255, 255, 0.88);
    color: #0f172a;
}

.badge-title {
    font-size: 12px;
    font-weight: 700;
}

.badge-time {
    font-size: 11px;
    opacity: 0.7;
}

.mini-avatars {
    position: absolute;
    right: 72px;
    top: 236px;
    z-index: 2;
    display: flex;
}

.mini-avatars img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.95);
    object-fit: cover;
    margin-left: -10px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.14);
}

@media (max-width: 980px) {
    .login-card {
        grid-template-columns: 1fr;
    }

    .login-card-left,
    .login-card-right,
    .hero-image-wrap {
        min-height: auto;
    }

    .login-card-right,
    .hero-image-wrap {
        min-height: 520px;
    }
}

@media (max-width: 680px) {
    .login-page {
        padding: 0;
    }

    .login-card {
        border-radius: 0;
    }

    .login-card-left {
        padding: 22px 16px 18px;
    }

    .login-form-wrap {
        max-width: 100%;
    }

    .login-form-wrap h1 {
        font-size: 28px;
    }

    .hero-image-wrap,
    .login-card-right {
        min-height: 420px;
    }

    .badge-bottom {
        left: 18px;
        bottom: 82px;
    }

    .mini-avatars {
        right: 18px;
        top: 164px;
    }

    .mini-avatars img {
        width: 42px;
        height: 42px;
    }

    .login-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}
