html[data-coreui-theme="dark"] .input-group select {
  background-color: #161b22;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
}

html[data-coreui-theme="light"] .input-group select {
  background-color: #ffffff;
  color: #131313;
}

html[data-coreui-theme="light"] .input-group input {
  background-color: #ffffff;
  color: #131313; 
}

html[data-coreui-theme="dark"] .input-group input {
  background-color: #161b22;
  color: #ffffff;
}

html[data-coreui-theme="light"] .theme-switcher {
  color: #ffffff;
}
.input-group .flex-fill + .flex-fill {
  margin-left: 10px;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.775em;
    color: var(--cui-form-invalid-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }

  body {
    height: 100vh;
    display: flex;
    overflow: hidden;
  }

  .login-container {
    display: flex;
    flex: 1;
    margin: auto;
    height: 100%;
  }

  .login-left {
    background-color: #212631;
    color: white;
    width: 40%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .login-left img {
    width: 60px;
    margin-bottom: 20px;
  }

  .login-left h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .login-left p {
    color: #c9d1d9;
    margin-bottom: 30px;
    font-size: 14px;
  }

  .input-group {
    margin-bottom: 20px;
    position: relative;
  }

  .input-group input {
    width: 100%;
    padding: 12px 40px 12px 14px;
    border: none;
    border-radius: 8px;
    background-color: #161b22;
    color: white;
    font-size: 14px;
  }

  .input-group i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b949e;
  }

  .login-left .forgot {
    text-align: right;
    font-size: 12px;
    margin-bottom: 20px;
  }

  .login-left .forgot a {
    color: #58a6ff;
    text-decoration: none;
  }

  .login-left button {
    width: 100%;
    padding: 12px;
    background-color: #3b82f6;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  }

  .login-left .register {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
  }

  .login-left .register a {
    color: #58a6ff;
    text-decoration: none;
  }

  .login-left .back {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #8b949e;
    cursor: pointer;
  }

  .login-right {
    width: 60%;
    background: linear-gradient(135deg, #1f2937, #0c1e49);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .login-right img {
    width: 350px;
    max-width: 80%;
    height: auto;
  }

@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    height: 100vh;
  }

  .login-left,
  .login-right {
    width: 100%;
    height: auto;
    min-height: 100vh;
  }

  .login-left {
    overflow-y: auto;
    padding: 40px 16px;
    max-height: 100vh;
  }

  .login-right {
    display: none;
  }
}

  .input-group input {
    width: 100%;
    padding: 12px 40px 12px 14px;
    border: none;
    border-radius: 8px;
    background-color: #ffffff;
    color: rgb(19, 19, 19);
    font-size: 14px;
}
