/* Login Page CSS */
:root {
    --primary-color: #3B5382;
    --primary-hover:  #3B5382;
    --secondary-color: #000000;
    --text-color: #333;
    --light-text: #fff;
    --font-family: "Jost", sans-serif;
    --border-color: rgba(255, 255, 255, 0.1);
    --input-bg: rgba(255, 255, 255, 0.9);
    --font-size: 17px;
  }
  body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-size: var(--font-size) !important;
    font-family: var(--font-family);
  }
  .login-container {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    /* background-image: url(../../images/donswift-login-bg.jpg); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: stretch;
  }
  .split-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    background: rgba(255, 255, 255, 0.95);
  }
  .brand-section {
    flex: 0 0 40%;
    position: relative;
    background-image: url('../images/logo.png');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 40px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }
  .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--primary-color);
    opacity: 0.9;
    z-index: 1;
  }
  .brand-content {
    position: relative;
    z-index: 2;
  }
  .brand-logo .logo-text {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--light-text);
    text-decoration: none;
  }
  .brand-logo .highlight {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
  }
  .brand-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 20px;
  }
  .brand-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
  }
  .user-logo {
    text-align: center;
    margin-bottom: 40px;
  }
  .user-logo img {
    width: 220px;
    height: auto;
    max-width: 100%;
  }
  .login-section {
    flex: 0 0 60%;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login-box {
    width: 100%;
    max-width: 450px;
    padding: 40px;
  }
  .login-header {
    text-align: center;
    margin-bottom: 30px;
  }
  .login-header h2 {
    color: var(--text-color);
    margin-bottom: 10px;
  }
  .welcome-text {
    color: #666;
    font-size: 1rem;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .input-wrapper {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
  }
  .input-wrapper .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
  }
  .form-input {
    width: 100%;
    padding: 12px 12px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    transition: all 0.3s ease;
  }
  .form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
    outline: none;
  }
  .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .remember-me {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 0.9rem;
  }
  .forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .forgot-password:hover {
    color: var(--primary-hover);
  }
  .login-btn {
    width: 100%;
    padding: 12px;
    background: var(--secondary-color);
    color: var(--light-text);
    border: none;
    border-radius: 5px;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .login-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
  }
  .login-btn i {
    transition: transform 0.3s ease;
  }
  .login-btn:hover i {
    transform: translateX(5px);
  }
  /* Responsive */
  @media (max-width: 968px) {
    .split-wrapper {
      flex-direction: column;
      max-width: none;
    }
    .brand-section {
      flex: 0 0 30%;
    }
    .login-section {
      flex: 0 0 70%;
    }
    .user-logo img {
      width: 100px;
    }
  }
  @media (max-width: 480px) {
    .login-container {
      padding: 0;
    }
    .user-logo img {
      width: 80px;
    }
  }
  