/* =========================
   STEP 1 – LOGIN
========================= */

* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  margin: 0;
  background: #f4f6f5;
}

.login {
  max-width: 420px;
  margin: 0 auto;
  min-height: 100vh;
  background: #ffffff;
  padding: 20px 18px 32px;
}

/* HEADER */
.login-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.login-header .back {
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

.login-header .help {
  font-size: 18px;
  cursor: pointer;
}

/* TITULO */
.login h1 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #111;
}

/* LABEL */
.login label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

/* INPUTS */
.login input[type="text"],
.login input[type="tel"],
.login input[type="number"],
.login input {
  width: 100%;
  padding: 14px 12px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  outline: none;
  margin-bottom: 16px;
}

.login input:focus {
  border-color: #1aa05d;
}

/* SALVAR CONTA */
.save-account {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 22px;
  font-size: 14px;
  color: #333;
}

/* SWITCH */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  border-radius: 30px;
  transition: .3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: .3s;
}

.switch input:checked + .slider {
  background-color: #1aa05d;
}

.switch input:checked + .slider:before {
  transform: translateX(20px);
}

/* BOTÃO */
.login-btn {
  width: 100%;
  padding: 16px;
  background: #1aa05d;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.login-btn:active {
  transform: scale(0.98);
}
