﻿/* Login Page Styles */

/* Use theme CSS variables */
:root {
    --login-gradient-start: #667eea;
    --login-gradient-end: #764ba2;
    --login-primary: #667eea;
    --login-secondary: #764ba2;
}

body[data-theme=blue] {
    --login-gradient-start: #1572e8;
    --login-gradient-end: #1269db;
    --login-primary: #1572e8;
    --login-secondary: #1269db;
}

body[data-theme=purple] {
    --login-gradient-start: #6861ce;
    --login-gradient-end: #5c55bf;
    --login-primary: #6861ce;
  --login-secondary: #5c55bf;
}

body[data-theme=green] {
    --login-gradient-start: #008E11;
    --login-gradient-end: #007104;
    --login-primary: #008E11;
    --login-secondary: #007104;
}

body[data-theme=orange] {
    --login-gradient-start: #db6700;
    --login-gradient-end: #c25a00;
    --login-primary: #db6700;
    --login-secondary: #c25a00;
}

body[data-theme=dark] {
    --login-gradient-start: #1a2035;
    --login-gradient-end: #2c3e50;
    --login-primary: #1a2035;
    --login-secondary: #34495e;
}

body[data-theme=darkred] {
    --login-gradient-start: #911726;
    --login-gradient-end: #6d1119;
    --login-primary: #911726;
    --login-secondary: #6d1119;
}

body[data-theme=lightred] {
    --login-gradient-start: #ffffff;
    --login-gradient-end: #f8f9fa;
    --login-primary: #911726;
    --login-secondary: #7a1320;
}

body[data-theme=light] {
    --login-gradient-start: #f8f9fa;
    --login-gradient-end: #e9ecef;
    --login-primary: #1572e8;
--login-secondary: #004bb8;
}

body {
    background: linear-gradient(135deg, var(--login-gradient-start) 0%, var(--login-gradient-end) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

input::-ms-reveal {
    display: none;
}

.theme-button {
    border-width: 1px;
    width: 28px;
  height: 28px;
 border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.theme-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.theme-button::after {
  content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
background: linear-gradient(135deg, transparent, rgba(255,255,255,0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-button:hover::after {
  opacity: 1;
}

.login-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.login-container {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
animation: slideIn 0.6s ease;
    backdrop-filter: blur(10px);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
      opacity: 1;
        transform: translateY(0);
    }
}

.login-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.login-left {
  background: linear-gradient(135deg, var(--login-gradient-start) 0%, var(--login-gradient-end) 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  align-items: center;
    position: relative;
 overflow: hidden;
}

.login-left::before {
    content: '';
    position: absolute;
    top: -50%;
 left: -50%;
    width: 200%;
height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
 from {
        transform: rotate(0deg);
    }

    to {
   transform: rotate(360deg);
    }
}

.logo-container {
 position: relative;
    z-index: 1;
    text-align: center;
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: block;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: #fff;
    padding: 15px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.brand-info {
    color: #fff;
    text-align: center;
}

.brand-info h1 {
    font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.brand-info p {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 400;
}

.welcome-text {
    margin-top: 40px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
}

.login-right {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-header {
    margin-bottom: 40px;
}

.login-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.login-header p {
    color: #718096;
    font-size: 15px;
}

.form-group {
  position: relative;
}

.form-group label {
    display: block;
    font-size: 14px;
  font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    border-color: var(--login-primary);
    box-shadow: 0 0 0 4px rgba(var(--login-primary), 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #a0aec0;
}

.form-group.has-error .form-control {
    border-color: #f56565;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}

.password-toggle {
    position: absolute;
    right: 18px;
  top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #a0aec0;
    transition: color 0.3s ease;
    font-size: 18px;
}

.password-toggle:hover {
    color: var(--login-primary);
}

.forgot-password {
    margin-top: 12px;
    margin-left: 10px;
    margin-bottom: 24px;
}

.forgot-password a {
    color: var(--login-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.forgot-password a:hover {
    color: var(--login-secondary);
    text-decoration: underline;
}

.btnSubmit {
    background: linear-gradient(135deg, var(--login-primary) 0%, var(--login-secondary) 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.btnSubmit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btnSubmit:active {
    transform: translateY(0);
}

.error-message {
    background: #fff5f5;
    border-left: 4px solid #f56565;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    color: #c53030;
    font-size: 14px;
}

.options-section {
    margin-top: 40px;
    padding-top: 30px;
  border-top: 1px solid #e2e8f0;
}

.options-section h3 {
 font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 16px;
    text-align: center;
}

.theme-selector,
.language-selector {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-language {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 10px;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    font-size: 14px;
}

.btn-language:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--login-primary);
    background: #fff;
}

.btn-language img {
    width: 28px;
    height: 19px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mobile-app-section {
    text-align: center;
    margin-top: 30px;
}

.mobile-app-section h3 {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 16px;
}

.app-store-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.app-store-links img {
    height: 42px;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.app-store-links img:hover {
    transform: scale(1.05);
}

/* Single column layout for intro view */
.intro-layout {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-layout .header-section {
    text-align: center;
    margin-bottom: 40px;
}

.intro-layout .header-section h1 {
    font-size: 36px;
 font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.intro-layout .content-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 30px;
    align-items: start;
}

.intro-layout .login-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    position: sticky;
    top: 20px;
}

.intro-layout .slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.intro-layout .slider-container {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.intro-layout .info-cards {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.intro-layout .info-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    padding: 20px;
}

.intro-layout .info-card.active {
    opacity: 1;
    visibility: visible;
 z-index: 1;
}

.intro-layout .info-card .icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
  background: linear-gradient(135deg, var(--login-primary) 0%, var(--login-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.intro-layout .info-card .icon-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
}

.intro-layout .info-card .icon-wrapper i {
    font-size: 48px;
    color: #fff;
}

.intro-layout .info-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
  margin-bottom: 20px;
    line-height: 1.3;
}

.intro-layout .info-card p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 16px;
  max-width: 800px;
    margin: 0 auto;
}

.intro-layout .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.intro-layout .slider-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
  justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4a5568;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.intro-layout .slider-btn:hover:not(:disabled) {
    background: #fff;
    border-color: var(--login-primary);
    color: var(--login-primary);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.intro-layout .slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.intro-layout .slider-dots {
 display: flex;
    gap: 10px;
}

.intro-layout .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
 transition: all 0.3s ease;
}

.intro-layout .slider-dot.active {
    background: var(--login-primary);
    border-color: var(--login-primary);
    transform: scale(1.3);
}

.intro-layout .slider-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.option-section {
    margin-top: 24px;
}

.option-section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #e2e8f0, transparent);
}

.theme-selector {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.language-selector {
    display: flex;
 flex-direction: row;
    gap: 10px;
}

.btn-language {
    justify-content: flex-start;
    padding: 12px 16px;
  background: #f8f9fa;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
  transition: all 0.3s ease;
    text-decoration: none;
  color: #2d3748;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-language:hover {
    background: #fff;
    border-color: var(--login-primary);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.btn-language img {
    width: 24px;
  height: 16px;
    border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mobile-app-section {
    margin-top: 0;
}

.mobile-app-section .app-store-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-app-section .app-store-links a {
 display: block;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.mobile-app-section .app-store-links a:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mobile-app-section .app-store-links img {
    height: 44px;
    width: 100%;
    object-fit: contain;
}

/* ============================
   RESPONSIVE MEDIA QUERIES
   ============================ */

/* Large Tablets and Small Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
    .intro-layout .content-grid {
        grid-template-columns: 400px 1fr;
        gap: 25px;
    }

    .intro-layout .login-card {
        padding: 30px;
    }

    .intro-layout .slider-container {
        padding: 35px;
    }

    .intro-layout .info-card h2 {
        font-size: 22px;
    }

    .intro-layout .info-card p {
        font-size: 15px;
    }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
    .login-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .login-left {
        padding: 40px;
        min-height: 300px;
    }

    .login-left::before {
        display: none;
    }

    .logo {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .brand-info h1 {
        font-size: 24px;
    }

    .brand-info p {
        font-size: 14px;
    }

    .welcome-text {
        margin-top: 25px;
        font-size: 13px;
    }

    .login-right {
        padding: 40px;
    }

    .login-header h2 {
        font-size: 28px;
    }

    .intro-layout .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-layout .login-card {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

    .intro-layout .slider-wrapper {
        order: -1;
    }

    .intro-layout .header-section h1 {
        font-size: 32px;
    }

    .intro-layout .slider-container {
        min-height: 350px;
    }

    .intro-layout .info-cards {
        min-height: 350px;
    }
}

/* Small Tablets and Large Phones (max-width: 768px) */
@media (max-width: 768px) {
    body {
        padding: 0;
        min-height: 100vh;
        align-items: flex-start;
    }

    .login-wrapper {
        padding: 15px;
        max-width: 100%;
    }

    .login-container {
        border-radius: 16px;
        margin: 15px 0;
    }

    .login-left {
        padding: 30px 20px;
        min-height: 250px;
    }

    .logo {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
        padding: 10px;
    }

    .brand-info h1 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .brand-info p {
        font-size: 13px;
    }

    .welcome-text {
        margin-top: 20px;
        font-size: 12px;
    }

    .login-right {
        padding: 30px 20px;
    }

    .login-header {
        margin-bottom: 30px;
    }

    .login-header h2 {
        font-size: 24px;
    }

    .form-control {
        padding: 12px 16px;
        font-size: 14px;
    }

    .btnSubmit {
        padding: 14px;
        font-size: 15px;
    }

    .options-section {
        margin-top: 30px;
        padding-top: 25px;
    }

    .theme-selector {
        gap: 10px;
    }

    .theme-button {
        width: 32px;
        height: 32px;
    }

    .language-selector {
        flex-direction: column;
        gap: 10px;
    }

    .btn-language {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    /* Intro Layout - Tablet */
    .intro-layout {
        padding: 20px 15px;
    }

    .intro-layout .header-section {
        margin-bottom: 30px;
    }

    .intro-layout .header-section h1 {
        font-size: 28px;
    }

    .intro-layout .login-card {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .intro-layout .slider-container {
        padding: 25px 20px;
        border-radius: 16px;
        min-height: 320px;
    }

    .intro-layout .info-cards {
        min-height: 320px;
    }

    .intro-layout .info-card .icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .intro-layout .info-card .icon-wrapper i {
        font-size: 40px;
    }

    .intro-layout .info-card h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .intro-layout .info-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .intro-layout .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .intro-layout .slider-dot {
        width: 10px;
        height: 10px;
    }

    .intro-layout .language-selector {
        flex-direction: row;
        gap: 8px;
    }

    .intro-layout .btn-language {
        flex: 1;
        justify-content: center;
        padding: 10px;
    }
}

/* Mobile Phones (max-width: 576px) */
@media (max-width: 576px) {
    body {
        background: linear-gradient(135deg, var(--login-gradient-start) 0%, var(--login-gradient-end) 100%);
        min-height: 100vh;
    }

    .login-wrapper {
        padding: 10px;
    }

    .login-container {
        border-radius: 12px;
        margin: 10px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .login-left {
        padding: 25px 15px;
        min-height: 220px;
    }

    .logo {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
        border-radius: 16px;
    }

    .brand-info h1 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .brand-info p {
        font-size: 12px;
    }

    .welcome-text {
        margin-top: 15px;
        font-size: 11px;
        line-height: 1.6;
    }

    .login-right {
        padding: 25px 15px;
    }

    .login-header {
        margin-bottom: 25px;
    }

    .login-header h2 {
        font-size: 22px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-control {
        padding: 11px 14px;
        font-size: 14px;
        border-radius: 10px;
    }

    .password-toggle {
        right: 14px;
        font-size: 16px;
    }

    .forgot-password {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .forgot-password a {
        font-size: 13px;
    }

    .btnSubmit {
        padding: 13px;
        font-size: 14px;
        border-radius: 10px;
    }

    .error-message {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 6px;
    }

    .options-section {
        margin-top: 25px;
        padding-top: 20px;
    }

    .options-section h3 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .theme-selector {
        gap: 8px;
    }

    .theme-button {
        width: 30px;
        height: 30px;
    }

    .language-selector {
        gap: 8px;
    }

    .btn-language {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 10px;
    }

    .btn-language img {
        width: 22px;
        height: 15px;
    }

    /* Intro Layout - Mobile */
    .intro-layout {
        padding: 15px 10px;
    }

    .intro-layout .header-section {
        margin-bottom: 20px;
    }

    .intro-layout .header-section h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .intro-layout .login-card {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .intro-layout .login-card .text-center.mb-4 .logo {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 12px !important;
    }

    .intro-layout .login-card .text-center.mb-4 h3 {
        font-size: 16px !important;
        margin-bottom: 4px !important;
    }

    .intro-layout .login-card .text-center.mb-4 p {
        font-size: 12px !important;
    }

    .intro-layout .login-header {
        margin-top: 20px !important;
        margin-bottom: 25px !important;
    }

    .intro-layout .login-header h2 {
        font-size: 20px !important;
    }

    .intro-layout .slider-container {
        padding: 20px 15px;
        border-radius: 12px;
        min-height: 280px;
    }

    .intro-layout .info-cards {
        min-height: 280px;
    }

    .intro-layout .info-card {
        padding: 15px;
    }

    .intro-layout .info-card .icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .intro-layout .info_card .icon-wrapper i {
        font-size: 32px;
    }

    .intro-layout .info-card h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .intro-layout .info-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    .intro-layout .slider-controls {
        gap: 12px;
    }

    .intro-layout .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .intro-layout .slider-dots {
        gap: 8px;
    }

    .intro-layout .slider-dot {
        width: 8px;
        height: 8px;
    }

    .intro-layout .option-section {
        margin-top: 20px;
    }

    .intro-layout .theme-selector {
        gap: 8px;
    }

    .intro-layout .language-selector {
        flex-direction: column;
        gap: 8px;
    }

    .intro-layout .btn-language {
        width: 100%;
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* Extra Small Phones (max-width: 375px) */
@media (max-width: 375px) {
    .login-wrapper {
        padding: 8px;
    }

    .login-left {
        padding: 20px 12px;
        min-height: 200px;
    }

    .logo {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .brand-info h1 {
        font-size: 16px;
    }

    .brand-info p {
        font-size: 11px;
    }

    .welcome-text {
        font-size: 10px;
    }

    .login-right {
        padding: 20px 12px;
    }

    .login-header h2 {
        font-size: 20px;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 13px;
    }

    .btnSubmit {
        padding: 12px;
        font-size: 13px;
    }

    .theme-button {
        width: 28px;
        height: 28px;
    }

    .btn-language {
        padding: 9px 12px;
        font-size: 12px;
    }

    .btn-language img {
        width: 20px;
        height: 14px;
    }

    /* Intro Layout - Extra Small */
    .intro-layout .header-section h1 {
        font-size: 20px;
    }

    .intro-layout .slider-container {
        padding: 18px 12px;
        min-height: 260px;
    }

    .intro-layout .info-cards {
        min-height: 260px;
    }

    .intro-layout .info-card .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .intro-layout .info-card .icon-wrapper i {
        font-size: 28px;
    }

    .intro-layout .info-card h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .intro-layout .info-card p {
        font-size: 12px;
    }

    .intro-layout .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .intro-layout .slider-dot {
        width: 7px;
        height: 7px;
    }
}

/* Landscape Orientation for Mobile Devices */
@media (max-height: 600px) and (orientation: landscape) {
    body {
        align-items: flex-start;
        padding: 10px 0;
    }

    .login-wrapper {
        padding: 10px;
    }

    .login-container {
        margin: 10px 0;
    }

    .login-content {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
    }

    .login-left {
        padding: 20px;
        min-height: auto;
    }

    .logo {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .brand-info h1 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .brand-info p {
        font-size: 12px;
    }

    .welcome-text {
        margin-top: 10px;
        font-size: 11px;
    }

    .login-right {
        padding: 20px;
    }

    .login-header {
        margin-bottom: 20px;
    }

    .login-header h2 {
        font-size: 20px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-control {
        padding: 10px 12px;
    }

    .btnSubmit {
        padding: 11px;
    }

    .options-section {
        margin-top: 20px;
        padding-top: 15px;
    }

    .intro-layout .content-grid {
        grid-template-columns: 350px 1fr;
    }

    .intro-layout .slider-container {
        min-height: 280px;
    }

    .intro-layout .info-cards {
        min-height: 280px;
    }
}

/* Print Styles */
@media print {
    body {
        background: #fff;
    }

    .login-wrapper {
        max-width: 100%;
        padding: 0;
    }

    .login-container {
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }

    .login-left::before {
        display: none;
    }

    .options-section,
    .slider-controls {
        display: none;
    }
}
