/*/*/*:root {
  --primary-blue: #1494BA;
  --input-bg: #F7FAFC;
  --border-color: #E5E7EB;
  --text-dark: #1E293B;
  --text-light: #64748B;
  --right-bg: #1a0a3c;
  --check-color: #2ed8c3;
  --text-label-dark: #2D3748;
  --destructive: 220, 38, 38; /* Tailwind's red-600 */
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #f9fafb;
}

.container {
  display: flex;
  min-height: 100vh;
}

.left-panel,
.right-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.left-panel {
  background: #fff;
  align-items: flex-start;
}

.logo {
  width: 56px;
  margin-bottom: 32px;
}

.form-container h1 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 36px;
}

.subtitle {
  color: var(--text-light);
  margin-top: 0;
  margin-bottom: 32px;
}

.form-container {
  max-width: 448px;
  width: 100%;
  margin: 0 auto;
}

.form-container form {
  width: 100%;
}

.info-container {
  max-width: 487px;
  width: 100%;
  margin: 0 auto;
}


.form-container label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-label-dark);
  font-size: 14px;
}

.input-group {
  display: flex;
  align-items: center;
  background: var(--input-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 0 12px;
}

.input-group .icon {
  color: #b0b3b8;
  margin-right: 10px;
  margin-top: 2px;
}

.input-group input {
  border: none;
  background: transparent;
  padding: 16px 0;
  width: 100%;
  font-size: 1em;
  outline: none;
  color: #9CA3AF;
}

.input-group input::placeholder {
  color: #9CA3AF;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 0.98em;
}

.options label {
  font-weight: 400;
  color: var(--text-label-dark);
  margin-bottom: 0;
  font-size: 14px;
}

.forgot {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

.sign-in-btn {
  width: 100%;
  background: var(--primary-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 0;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 24px;
  transition: background 0.2s;
}

.sign-in-btn:hover {
  background: #127a94;
}

.register {
  text-align: center;
  color: var(--text-light);
  font-size: 0.98em;
  margin: 0;
}

.register a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

.right-panel {
  color: #fff;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


.info-container h2 {
  font-size: 36px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 32px;
}

.info-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-container li {
  font-size: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  font-weight: normal;
}

.info-container li img {
  margin-right: 10px;
}


.left-panel img.logo {
  position: absolute;
  left: 16px;
  top: 16px;
}
.custom-toast {
  position: fixed;
  top: 1rem; /* top-4 */
  left: 25%; /* left-1/2 */
  z-index: 50; /* z-50 */
  transform: translateX(-50%); /* -translate-x-1/2 */
  border-radius: 0.375rem; /* rounded-md */
  background-color: rgba(var(--destructive), 0.2); /* bg-destructive/20 */
  padding: 1rem; /* p-4 */
  color: var(--destructive-foreground); /* text-destructive-foreground */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* shadow-md */
}
.welcome-banner-image .right-panel{
  height: 100%;
}

/* Responsive Design */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    min-height: auto;
  }

  .right-panel,
  .left-panel {
    flex: none;
    width: 100%;
    min-height: 320px;
    padding: 32px 16px;
  }

  .right-panel {
    align-items: flex-start;
    padding: 70px 20px;
  }
  .form-container {
      padding: 50px 0 25px;
  }
  .info-container h2 {
    font-size: 30px;
    line-height: 38px;
}
}
