* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #e8e8e8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 40px 40px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

/* ── Brand ── */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.brand-icon {
  width: 52px;
  height: 52px;
  background-color: #2d5a1b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.brand-text h2 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.brand-text p {
  font-size: 13px;
  color: #999;
  margin-top: 3px;
}

/* ── Heading ── */
.heading {
  text-align: center;
  margin-bottom: 32px;
}

.heading h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.heading p {
  font-size: 15px;
  color: #999;
}

/* ── Form ── */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 7px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper .icon-left {
  position: absolute;
  left: 14px;
  color: #bbb;
  display: flex;
  align-items: center;
}

.input-wrapper .icon-right {
  position: absolute;
  right: 14px;
  color: #bbb;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
}

.input-wrapper input {
  width: 100%;
  padding: 13px 42px;
  border: none;
  background-color: #f3f3f3;
  border-radius: 10px;
  font-size: 15px;
  color: #333;
  outline: none;
  transition: background-color 0.2s;
}

.input-wrapper input:focus {
  background-color: #ebebeb;
}

.input-wrapper input::placeholder {
  color: #bbb;
}

/* ── Row: remember + forgot ── */
.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
}

.remember input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #2d5a1b;
  cursor: pointer;
}

.forgot {
  font-size: 14px;
  font-weight: 600;
  color: #2d5a1b;
  text-decoration: none;
}

.forgot:hover {
  text-decoration: underline;
}

/* ── Primary button ── */
.btn-primary {
  width: 100%;
  padding: 15px;
  background-color: #2d5a1b;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 4px;
}

.btn-primary:hover {
  background-color: #244d15;
}

/* ── Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e4e4e4;
}

.divider span {
  font-size: 14px;
  color: #bbb;
  white-space: nowrap;
}

/* ── Google button ── */
.btn-google {
  width: 100%;
  padding: 14px;
  background-color: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.2s;
}

.btn-google:hover {
  background-color: #f7f7f7;
}

.google-logo {
  width: 20px;
  height: 20px;
}

/* ── Bottom link row ── */
.bottom-row {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #999;
}

.bottom-row a {
  color: #2d5a1b;
  font-weight: 600;
  text-decoration: none;
}

.bottom-row a:hover {
  text-decoration: underline;
}

/* ── Owner section ── */
.owner-section {
  border-top: 1px solid #efefef;
  margin-top: 28px;
  padding-top: 24px;
  text-align: center;
}

.owner-section p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 14px;
}

.btn-owner {
  padding: 12px 24px;
  background-color: #fff;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-owner:hover {
  background-color: #f5f5f5;
}
