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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #222;
}

/* Container */
.container {
  max-width: 375px;
  margin: auto;
  padding: 24px 20px;
}

/* Logo */
.logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo img {
  width: 160px;
}

.tagline {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

/* Label */
.label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

/* Input */
input {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 14px;
  margin-bottom: 12px;
}

/* Remember */
.remember {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #555;
  margin-bottom: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #2f7d14;
  border-radius: 2px;
  margin-right: 8px;
}

/* Buttons */
.btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-size: 15px;
  color: #fff;
  text-decoration: none;   /* important */
  text-align: center;
  display: inline-block;
}


button,
.btn {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}


/* Submit */
.submit {
  background: #2f7d14;
  margin-bottom: 24px;
}

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

.divider span {
  flex: 1;
  height: 1px;
  background: #ddd;
}

.divider p {
  font-size: 13px;
  color: #777;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Colors */
.red { background: #e45757; }
.orange { background: #e0a15c; }
.blue { background: #1784f2; }
.green { background: #6bbf59; }

/* Footer */
footer {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin: 30px 0 10px;
}


.container {
  padding-top: 64px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #222;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1;
}

footer {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  padding: 16px 10px;
}
