* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: 'Inter', sans-serif;
}

.container {
  display: flex;
  height: 100vh;
  width: 100%;
  flex-direction: row;
}

.left-panel {
  background-color: #1753ff;
  color: white;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.content {
  max-width: 400px;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.back-link {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.right-panel {
  flex: 2;
  background-color: #fafafa;
}

/* Mobile styles */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .left-panel {
    display: none; /* 🔥 Hide blue panel entirely */
  }

  .right-panel {
    width: 100%;
    height: 100vh; /* Make it take full screen */
  }
}
