* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, sans-serif;
  background: #fff;
  color: #0f172a;
}

.layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 46% 54%;
}

.left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.box {
  width: 100%;
  max-width: 420px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sub {
  color: #475569;
  margin-bottom: 24px;
}

.field {
  margin-bottom: 12px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #334155;
}

.field input {
  width: 100%;
  border: 1px solid #dbe3ec;
  border-radius: 12px;
  padding: 12px 13px;
  font-size: 15px;
}

.btn {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: #1e3a8a;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.meta {
  margin-top: 12px;
  color: #64748b;
  font-size: 13px;
  min-height: 20px;
}

.right {
  position: relative;
  overflow: hidden;
}

.right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  inset: auto 26px 28px 26px;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.overlay h2 {
  margin: 0 0 8px;
  font-size: 38px;
  line-height: 1.08;
}

.overlay p {
  margin: 0;
  font-size: 18px;
  max-width: 680px;
}

@media (max-width: 1080px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .right {
    display: none;
  }

  .left {
    padding: 22px;
  }
}
