body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #f5f7fb;
  font-family: 'Roboto', sans-serif;
  color: #252525;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal_login {
  background: #ffffff;
  width: min(680px, 95%);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
  position: relative;
}

.modal_login--error {
  border: 2px solid #ea4336;
}

.title {
  text-align: center;
  color: #446ca9;
  margin-bottom: 12px;
}

.title h3 {
  margin: 0;
  font-size: 28px;
}

.subtitle {
  margin: 0 0 24px;
  text-align: center;
  font-size: 16px;
  color: #4b5563;
}

.subtitle--error {
  color: #b91c1c;
}

.recovery-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  display: grid;
  gap: 18px;
}

.recovery-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recovery-row label {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: #446ca9;
}

.recovery-row .value {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  padding: 12px 16px;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: 0.6px;
  word-break: break-word;
}

.recovery-row__password {
  position: relative;
  padding-bottom: 8px;
}

.recovery-row__password .btn_copy {
  margin-top: 10px;
  align-self: flex-start;
}

.recovery-content {
  border-top: 1px solid #e2e8f0;
  padding-top: 16px;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.recovery-content p {
  margin: 0 0 12px;
}

.form_details {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  color: #4b5563;
}

.form_details .subtitle {
  margin-top: 12px;
  color: #64748b;
}

.btn {
  appearance: none;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 10px 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.35);
}

.btn:active {
  transform: translateY(0);
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #1d4ed8;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(29, 78, 216, 0.35);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast[hidden] {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
}

@media (max-width: 600px) {
  .modal_login {
    padding: 32px 24px;
  }

  .recovery-card {
    padding: 20px;
  }

  .btn {
    width: 100%;
  }
}
