* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #aeb4bf;
}

/* Full page center */
.page-bg {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

/* Main card */
.login-wrapper {
  width: 1100px;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* LEFT PANEL */
.left-panel {
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #fff6d1, #ffeaa7);
}

/* Brand */
.brand {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

/* Form box */
.form-box {
  max-width: 350px;
}

.form-box h1 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #222;
}

.form-box p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* BUTTON FIX */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;  /* space between text & icon */

  width: 100%;
  height: 55px;

  border: none;
  border-radius: 10px;

  background: #facc15;
  color: #000;

  font-size: 16px;
  font-weight: 600;
  cursor: pointer;

  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: #fbbf24;
}

/* Google icon inside button */
.submit-btn img {
  width: 20px;
  height: 20px;
}

/* Status text */
.status-text {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
}

/* Bottom links */
.bottom-links {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 30px;
  color: #666;
}

.bottom-links a {
  text-decoration: none;
  color: #333;
}

.bottom-links a:hover {
  text-decoration: underline;
}

/* RIGHT PANEL */
.right-panel {
  position: relative;
}

/* Main image */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.8);
  font-size: 20px;
  cursor: pointer;
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: white;
  border-radius: 15px;
  padding: 12px 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.top-card {
  top: 25px;
  left: 25px;
}

.bottom-card {
  bottom: 25px;
  left: 50px;
}

/* Card text */
.mini-title {
  font-size: 13px;
  font-weight: bold;
}

.mini-sub {
  font-size: 12px;
  color: #555;
  margin-top: 3px;
}

.mini-time {
  font-size: 11px;
  margin-top: 8px;
}

/* Avatars */
.avatars {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}

.avatars span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: gray;
}