body.login-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #3b82f6, transparent 40%),
              radial-gradient(circle at bottom right, #10b981, transparent 40%),
              #0f172a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 20px;
}

.login-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
}

.login-card {
  display: flex;
  flex-direction: row;
  min-height: 600px;
}

.login-left {
  width: 45%;
  padding: 40px;
  background: linear-gradient(135deg, #0f172a, #1e3a8a, #0f766e);
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-left .login-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 24px;
  color: #ffffff;
}

.login-left .login-logo img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.login-left h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.login-left p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #cbd5f5;
}

.login-footer-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-size: 14px;
  color: #cbd5f5;
  opacity: 0.9;
}

.login-right {
  width: 55%;
  padding: 40px;
  background: #ffffff;
  color: #111827;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-right h3 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 8px;
}

.login-subtitle {
  margin: 0 0 32px;
  font-size: 14px;
  color: #6b7280;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-input {
  height: 48px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 0 20px;
  background: #ffffff;
  color: #111827;
  font-size: 15px;
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
}

textarea.login-input {
  height: 120px;
  border-radius: 20px;
  padding: 16px 20px;
  resize: none;
}

.login-input::placeholder {
  color: #9ca3af;
}

.login-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.login-button {
  height: 48px;
  margin-top: 8px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.login-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.login-message {
  min-height: 24px;
  font-size: 14px;
  margin-top: 8px;
}

.login-message .alert {
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 0;
}

.login-links {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.login-links a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.login-links a:hover {
  text-decoration: underline;
  color: #2563eb;
}

/* Responsividade */
@media (max-width: 992px) {
  .login-card {
    flex-direction: column;
    min-height: auto;
  }
  
  .login-left, .login-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .login-card {
    flex-direction: column;
  }

  .login-left, .login-right {
    width: 100%;
    padding: 25px;
  }

  .login-left h2, .login-right h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  body.login-body {
    padding: 16px;
    align-items: center;
    min-height: 100vh;
  }

  .login-wrapper {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    width: 100%;
    margin: 0 auto;
  }

  .login-card {
    flex-direction: column;
    min-height: auto;
    border-radius: 20px;
  }

  .login-left {
    flex: 0 0 auto;
    padding: 24px 20px;
  }

  .login-right {
    flex: 1 1 auto;
    padding: 24px 20px;
  }
}

@media (min-width: 1200px) {
  .login-wrapper {
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }
}

