:root {
  --primary: #D4AF37;
  --primary-light: #F7D26B;
  --primary-dark: #B28C1E;
  --surface: #ffffff;
  --bg: #f5f5f5;
  --text: #1a2634;
  --muted: #5d6c7b;
  --border: #e0e0e0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page-container {
  width: 100%;
  max-width: 1100px;
}

/* Single Card Container */
.login-card {
  background: var(--surface);
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  overflow: hidden;
}

/* Left: Login Form Section */
.login-form-section {
  flex: 0 0 45%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 24px;
  display: block;
}

.login-form {
  display: grid;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

input[type="email"],
input[type="password"],
input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  background: #ffffff;
  color: var(--text);
  transition: all 0.3s ease;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.btn {
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* Right: Welcome Section */
.welcome-section {
  flex: 0 0 55%;
  background: var(--primary);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 80px 0 0 80px;
}

.welcome-content {
  text-align: center;
}

.welcome-heading {
  margin: 0 0 16px;
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
}

.welcome-message {
  margin: 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
}

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

  .login-form-section {
    flex: 0 0 100%;
  }

  .welcome-section {
    flex: 0 0 100%;
    border-radius: 0;
    padding: 40px 24px;
  }

  .form-title {
    font-size: 1.3rem;
  }

  .welcome-heading {
    font-size: 2rem;
  }
}
