/* IA: Auth/Login — dalgalı ayrım + sağ form (Dakix kurumsal) */

html.login1-page,
html.login1-page body {
    font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
    min-height: 100vh;
    margin: 0;
}

html.login1-page.login-theme-light,
html.login1-page.login-theme-light body {
    background: #ffffff;
    color: #1e293b;
}

html.login1-page.login-theme-dark,
html.login1-page.login-theme-dark body {
    background: #151d2b;
    color: #e2e8f0;
}

.login1-shell {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.login1-topbar {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.25rem;
}

.login1-theme-toggle .btn {
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
}

html.login-theme-light .login1-theme-toggle .btn {
    border-color: rgba(148, 163, 184, 0.55);
    color: #64748b;
    background: rgba(255, 255, 255, 0.85);
}

html.login-theme-light .login1-theme-toggle .btn.active {
    background: #80949d;
    border-color: #80949d;
    color: #fff;
}

html.login-theme-dark .login1-theme-toggle .btn {
    border-color: #475569;
    color: #cbd5e1;
    background: rgba(30, 41, 59, 0.85);
}

html.login-theme-dark .login1-theme-toggle .btn.active {
    background: #64748b;
    border-color: #94a3b8;
    color: #f8fafc;
}

.login1-stage {
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    min-height: 0;
    height: 100%;
}

.login1-stage-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    box-shadow: none;
}

html.login-theme-light .login1-stage-card {
    background: #fff;
}

html.login-theme-dark .login1-stage-card {
    background: #151d2b;
}

/* Dalga SVG arka plan */
.login1-wave-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

html.login-theme-light .login1-grad-start { stop-color: #6a7f88; }
html.login-theme-light .login1-grad-mid { stop-color: #80949d; }
html.login-theme-light .login1-grad-end { stop-color: #9aafb7; }

html.login-theme-dark .login1-grad-start { stop-color: #334155; }
html.login-theme-dark .login1-grad-mid { stop-color: #475569; }
html.login-theme-dark .login1-grad-end { stop-color: #64748b; }

.login1-wave-brand-fill {
    fill: url(#loginBrandGrad);
}

html.login-theme-light .login1-wave-form-fill {
    fill: #ffffff;
}

html.login-theme-dark .login1-wave-form-fill {
    fill: #151d2b;
}

/* Sol marka */
.login1-brand {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vh, 3.5rem) clamp(2rem, 4vw, 4rem);
    color: #fff;
    max-width: min(540px, 90%);
}

.login1-form-panel {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 6vh, 4rem) clamp(2rem, 5vw, 4.5rem);
    min-width: 0;
}

.login1-form-inner {
    width: 100%;
    max-width: 440px;
}

/* IA: Blurlu form card — karşılaştırmak için geçici yoruma alındı
.login1-form-inner {
    width: 100%;
    max-width: 440px;
    padding: 2.15rem 2rem 2rem;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.login1-form-inner::before {
    content: "";
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    top: 0;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, #6f838c, #80949d 50%, #94a8b0);
    pointer-events: none;
}

html.login-theme-light .login1-form-inner {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.75);
}

html.login-theme-dark .login1-form-inner {
    background: rgba(21, 29, 43, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow:
        0 16px 44px rgba(0, 0, 0, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

html.login-theme-light .login1-form-panel {
    background:
        radial-gradient(ellipse 70% 55% at 70% 30%, rgba(128, 148, 157, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(148, 163, 184, 0.08) 0%, transparent 55%);
}

html.login-theme-dark .login1-form-panel {
    background:
        radial-gradient(ellipse 70% 55% at 70% 30%, rgba(100, 116, 139, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(51, 65, 85, 0.25) 0%, transparent 55%);
}
*/

.login1-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.72rem;
    color: rgba(100, 116, 139, 0.9);
    pointer-events: none;
}

.login1-footer a {
    color: inherit;
    text-decoration: underline;
    pointer-events: auto;
}

html.login-theme-dark .login1-footer {
    color: rgba(148, 163, 184, 0.75);
}

.login1-brand-top {
    margin-bottom: 1.1rem;
}

.login1-brand-logo img {
    height: 52px;
    margin-bottom: 0;
    filter: brightness(0) invert(1);
}

.login1-brand h1 {
    font-size: clamp(1.75rem, 2.8vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 0.85rem;
}

.login1-brand-lead {
    font-size: 0.98rem;
    line-height: 1.6;
    opacity: 0.92;
    max-width: 390px;
    margin: 0 0 1.45rem;
}

.login1-module-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin: 0 0 1.45rem;
}

.login1-module {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 0.9rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.login1-module-icon {
    flex: 0 0 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    align-self: center;
    position: relative;
}

.login1-module-icon i {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 1.2rem;
    color: #fff;
    line-height: 1 !important;
    margin: 0;
    padding: 0;
    /* glifi kutu merkezine kilitle + optik düzeltme */
    transform: translate(-50%, calc(-50% + 1px));
}

.login1-module-icon i::before {
    display: block;
    line-height: 1;
}

.login1-module-text {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login1-module-text strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 650;
    line-height: 1.25;
    margin-bottom: 0.12rem;
}

.login1-module-text span {
    display: block;
    font-size: 0.72rem;
    line-height: 1.35;
    opacity: 0.85;
}

.login1-brand-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.35rem;
}

.btn-login1-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-login1-brand i {
    font-size: 1rem;
    line-height: 1 !important;
    display: block;
    transform: translateY(1px);
}

.btn-login1-brand i::before {
    display: block;
    line-height: 1;
}

.btn-login1-brand:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-color: #fff;
}

.btn-login1-brand--solid {
    background: #fff;
    color: #5a6d75;
    border-color: #fff;
}

.btn-login1-brand--solid:hover {
    background: #f1f5f9;
    color: #475569;
    border-color: #f1f5f9;
}

.btn-login1-brand[type="button"] {
    cursor: pointer;
}

.login1-brand-foot {
    margin-top: 0.25rem;
}

.login1-social {
    display: flex;
    gap: 0.55rem;
    margin-bottom: 0;
}

.login1-social-brand a {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-decoration: none;
    font-size: 1rem;
    line-height: 0;
    transition: background 0.2s, transform 0.15s;
}

.login1-social-brand a i {
    display: block;
    line-height: 1 !important;
    transform: translateY(1px);
}

.login1-social-brand a i::before {
    display: block;
    line-height: 1;
}

.login1-social-brand a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-1px);
}

.login1-form-inner h2 {
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

html.login-theme-light .login1-form-inner h2 {
    color: #1e293b;
}

html.login-theme-dark .login1-form-inner h2 {
    color: #f1f5f9;
}

.login1-card-sub {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

html.login-theme-light .login1-card-sub {
    color: #64748b;
}

html.login-theme-dark .login1-card-sub {
    color: #94a3b8;
}

.login1-form-inner form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.login1-field {
    margin-bottom: 0;
}

.login1-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

html.login-theme-light .login1-label {
    color: #475569;
}

html.login-theme-dark .login1-label {
    color: #94a3b8;
}

.login1-input-wrap {
    position: relative;
    border-radius: 8px 8px 0 0;
}

.login1-input-wrap .form-control {
    height: 54px;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.65rem 2.75rem 0.65rem 0.35rem;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition:
        border-bottom-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

html.login-theme-light .login1-input-wrap .form-control {
    color: #0f172a;
    border-bottom: 2px solid #c5d4db;
}

html.login-theme-light .login1-input-wrap:hover .form-control:not(:focus):not(:disabled) {
    border-bottom-color: #80949d;
    transform: translateY(-2px);
    background: transparent;
}

html.login-theme-light .login1-input-wrap .form-control:focus {
    border-bottom-color: #6f838c;
    box-shadow: 0 3px 0 0 rgba(128, 148, 157, 0.28);
    background: transparent;
    outline: none;
    transform: none;
}

html.login-theme-light .login1-input-wrap .form-control::placeholder {
    color: #94a3b8;
    font-weight: 400;
    font-size: 0.95rem;
}

html.login-theme-dark .login1-input-wrap .form-control {
    color: #f1f5f9;
    border-bottom: 2px solid #475569;
}

html.login-theme-dark .login1-input-wrap:hover .form-control:not(:focus):not(:disabled) {
    border-bottom-color: #94a3b8;
    transform: translateY(-2px);
    background: transparent;
}

html.login-theme-dark .login1-input-wrap .form-control:focus {
    border-bottom-color: #cbd5e1;
    box-shadow: 0 3px 0 0 rgba(148, 163, 184, 0.28);
    background: transparent;
    outline: none;
    transform: none;
}

html.login-theme-dark .login1-input-wrap .form-control::placeholder {
    color: #64748b;
}

.login1-field-icon,
.login1-toggle-pw {
    position: absolute;
    right: 0.15rem;
    top: 50%;
    transform: translateY(-50%);
    color: #80949d;
    font-size: 1.15rem;
    transition: color 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.login1-toggle-pw {
    cursor: pointer;
    pointer-events: auto;
}

.login1-input-wrap:hover .login1-field-icon,
.login1-input-wrap:hover .login1-toggle-pw {
    transform: translateY(calc(-50% - 2px));
}

.login1-toggle-pw:hover {
    color: #5a6d75;
}

html.login-theme-light .login1-input-wrap:hover .login1-field-icon,
html.login-theme-light .login1-input-wrap:focus-within .login1-field-icon,
html.login-theme-light .login1-input-wrap:focus-within .login1-toggle-pw {
    color: #5a6d75;
}

html.login-theme-dark .login1-field-icon,
html.login-theme-dark .login1-toggle-pw {
    color: #94a3b8;
}

html.login-theme-dark .login1-toggle-pw:hover {
    color: #e2e8f0;
}

html.login-theme-dark .login1-input-wrap:hover .login1-field-icon,
html.login-theme-dark .login1-input-wrap:focus-within .login1-field-icon,
html.login-theme-dark .login1-input-wrap:focus-within .login1-toggle-pw {
    color: #e2e8f0;
}

.login1-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.9rem;
}

html.login-theme-light .login1-meta,
html.login-theme-light .login1-forgot {
    color: #64748b;
}

html.login-theme-dark .login1-meta,
html.login-theme-dark .login1-forgot {
    color: #94a3b8;
}

.login1-forgot {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}

html.login-theme-light .login1-forgot:hover {
    color: #80949d;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

html.login-theme-dark .login1-forgot:hover {
    color: #cbd5e1;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

html.login-theme-light .login1-meta .form-check-input:checked {
    background-color: #80949d;
    border-color: #80949d;
}

.btn-login1-primary {
    width: 100%;
    height: 54px;
    background: linear-gradient(180deg, #8aa0a8 0%, #80949d 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 20px rgba(90, 109, 117, 0.3);
    transition: filter 0.2s, box-shadow 0.2s;
    margin-top: 0.15rem;
}

.btn-login1-primary:hover:not(:disabled) {
    filter: brightness(0.97);
    color: #fff;
    box-shadow: 0 10px 24px rgba(90, 109, 117, 0.38);
}

.btn-login1-primary:disabled {
    opacity: 0.55;
    box-shadow: none;
}

/* Cloudflare Turnstile — ekstra çerçeve yok; form gap ile hizalı */
.login1-turnstile,
#loginTurnstile.cf-turnstile {
    margin: 0 !important;
    align-self: flex-start;
}

/* Katalog modal — Dakix kurumsal */
.login1-katalog-dialog {
    max-width: 760px;
}

.login1-katalog-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
}

html.login-theme-light .login1-katalog-content {
    background: #fff;
}

html.login-theme-dark .login1-katalog-content {
    background: #151d2b;
    color: #e2e8f0;
}

.login1-katalog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
    position: relative;
}

.login1-katalog-header::before {
    content: "";
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    top: 0;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, #6f838c, #80949d 50%, #94a8b0);
}

html.login-theme-dark .login1-katalog-header {
    background: linear-gradient(180deg, #1a2332 0%, #151d2b 100%);
    border-bottom-color: #334155;
}

.login1-katalog-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.login1-katalog-logo {
    height: 28px;
    width: auto;
    flex-shrink: 0;
}

html.login-theme-dark .login1-katalog-logo {
    filter: brightness(0) invert(1);
}

.login1-katalog-header .modal-title {
    font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    color: #0f172a;
}

html.login-theme-dark .login1-katalog-header .modal-title {
    color: #f1f5f9;
}

.login1-katalog-sub {
    margin: 0.15rem 0 0;
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 450;
}

html.login-theme-dark .login1-katalog-sub {
    color: #94a3b8;
}

.login1-katalog-close {
    margin: 0;
    padding: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    opacity: 0.7;
    background-size: 0.7em;
    box-shadow: none;
    transition: opacity 0.15s, background-color 0.15s;
}

.login1-katalog-close:hover {
    opacity: 1;
    background-color: rgba(128, 148, 157, 0.14);
}

html.login-theme-dark .login1-katalog-close {
    filter: invert(1) grayscale(100%);
}

.login1-katalog-body {
    padding: 1.15rem 1.25rem 1.35rem;
}

.book-view-wrap {
    perspective: 1600px;
    perspective-origin: 50% 50%;
    max-width: 100%;
    margin: 0 auto;
}

.book-perspective {
    position: relative;
    width: 100%;
    height: min(62vh, 520px);
    min-height: min(62vh, 520px);
    border-radius: 12px;
    background: linear-gradient(145deg, #eef2f5 0%, #e2e8f0 100%);
    border: 1px solid rgba(128, 148, 157, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 10px 28px rgba(90, 109, 117, 0.12);
    transform-style: preserve-3d;
    overflow: hidden;
    user-select: none;
}

html.login-theme-dark .book-perspective {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-color: #334155;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.book-page-layer {
    position: absolute;
    inset: 0;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 12px;
    overflow: hidden;
}

.book-page-layer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.book-page-top {
    z-index: 2;
    transform-style: preserve-3d;
    transform-origin: left center;
    transition: transform 0.58s cubic-bezier(0.33, 0.02, 0.24, 1);
    backface-visibility: hidden;
    touch-action: none;
    cursor: grab;
}

.book-page-top.flipping-next {
    transform: rotateY(-92deg);
}

.book-page-top.flipping-prev {
    transform-origin: right center;
    transform: rotateY(92deg);
}

.book-page-under {
    z-index: 1;
    background: linear-gradient(to right, #cbd5e1, #f8fafc);
}

html.login-theme-dark .book-page-under {
    background: linear-gradient(to right, #334155, #1e293b);
}

.book-toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.1rem;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background: rgba(128, 148, 157, 0.08);
    border: 1px solid rgba(128, 148, 157, 0.18);
}

html.login-theme-dark .book-toolbar {
    background: rgba(148, 163, 184, 0.08);
    border-color: rgba(148, 163, 184, 0.18);
}

.book-toolbar .btn-book-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(128, 148, 157, 0.45);
    background: #fff;
    color: #5a6d75;
    font-size: 1.1rem;
    line-height: 0;
    transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}

.book-toolbar .btn-book-nav:hover:not(:disabled) {
    background: #80949d;
    border-color: #80949d;
    color: #fff;
    transform: translateY(-1px);
}

.book-toolbar .btn-book-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

html.login-theme-dark .book-toolbar .btn-book-nav {
    background: #1e293b;
    border-color: #475569;
    color: #cbd5e1;
}

html.login-theme-dark .book-toolbar .btn-book-nav:hover:not(:disabled) {
    background: #64748b;
    border-color: #64748b;
    color: #fff;
}

.book-page-indicator {
    font-size: 0.88rem;
    font-weight: 600;
    color: #5a6d75;
    min-width: 4.5rem;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

html.login-theme-dark .book-page-indicator {
    color: #94a3b8;
}

#loadingOverlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

html.login-theme-dark #loadingOverlay {
    background: rgba(15, 23, 42, 0.8);
}

@media (max-width: 900px) {
    html.login1-page,
    html.login1-page body,
    .login1-shell {
        height: auto;
        min-height: 100vh;
        overflow: auto;
    }

    .login1-stage-card {
        grid-template-columns: 1fr;
        min-height: 100vh;
        height: auto;
    }

    .login1-wave-bg {
        display: none;
    }

    .login1-brand {
        max-width: none;
        padding: 3.5rem 1.5rem 1.75rem;
        background: linear-gradient(155deg, #6a7f88 0%, #80949d 100%);
    }

    html.login-theme-dark .login1-brand {
        background: linear-gradient(155deg, #334155 0%, #475569 100%);
    }

    .login1-form-panel {
        padding: 2rem 1.5rem 3.5rem;
    }

    .login1-module-grid {
        grid-template-columns: 1fr 1fr;
    }

    .login1-brand-lead {
        max-width: none;
    }

    .login1-footer {
        position: relative;
        color: #94a3b8;
    }

    html.login-theme-dark .login1-footer {
        color: #64748b;
    }
}

@media (max-width: 480px) {
    .login1-form-inner h2 {
        font-size: 1.3rem;
    }

    .login1-input-wrap .form-control {
        height: 50px;
        font-size: 1rem;
    }
}
