body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fb;
}

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

/* LEFT SIDE */
.login-info {
  flex: 1;
  background: linear-gradient(135deg, #01B5FF, #0393cb);
  color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-info h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.tagline {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.benefits li {
  margin-bottom: 10px;
}

.home-link {
  color: #cfe3ff;
  text-decoration: none;
  font-size: 14px;
}

.home-link:hover {
  text-decoration: underline;
}

/* RIGHT SIDE */
.login-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-form {
  width: 100%;
  max-width: 380px;
}

.login-form h2 {
  margin-bottom: 5px;
}

.subtitle {
  margin-bottom: 20px;
  color: #666;
}

.login-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

.login-form input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.login-form button {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background: #01B5FF;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.login-form button:hover {
  background: #0191e6;
}

.extras {
  margin-top: 15px;
  text-align: right;
}

.flash-message {
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
}

.flash-message.success {
  background: #d1fae5;
  color: #065f46;
}

.flash-message.error {
  background: #fee2e2;
  color: #991b1b;
}

.flash-message.neutral {
  background: #e5e7eb;
  color: #374151;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}