:root {
  --paypal-dark-blue: #003087;
  --paypal-light-blue: #009cde;
  --paypal-gray-bg: #f5f5f5;
  --paypal-white: #ffffff;
  --paypal-text-dark: #333333;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: var(--paypal-gray-bg);
  color: var(--paypal-text-dark);
}
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  background-color: var(--paypal-white);
  width: 100%;
  display: flex;
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.left-panel, .right-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.left-panel {
  background-color: var(--paypal-dark-blue);
  color: var(--paypal-white);
  padding: 60px;
}
.left-panel .logo {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.left-panel .promo {
  font-size: 1rem;
  line-height: 1.5;
}
.right-panel {
  padding: 60px;
}
.form-logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 150px;
  height: auto;
}
.right-panel h2 {
  margin-bottom: 1.5rem;
  color: var(--paypal-dark-blue);
  font-size: 1.5rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.form-group input {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.submit-btn {
  width: 100%;
  background-color: var(--paypal-light-blue);
  color: var(--paypal-white);
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 1.25rem;
}
.submit-btn:hover {
  background-color: #0086bf;
}
.forgot-link {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #0064a4;
  text-decoration: none;
}
.forgot-link:hover {
  text-decoration: underline;
}
.site-footer {
  background: #fff;
  padding: 20px;
  font-size: 0.9rem;
  color: #003087;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer a {
  color: #003087;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
}
.site-footer a:hover {
  text-decoration: underline;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.site-footer hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 10px 0;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.footer-bottom .left-links,
.footer-bottom .right-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.footer-bottom .flag {
  width: 16px;
  height: 12px;
  margin-left: 8px;
  border: 1px solid #ccc;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
