/* === Wrapper alignment === */
.tlsms-login-box {
  max-width: 420px;
  margin: 40px auto; /* ✅ centers horizontally */
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Title */
.tlsms-login-box h3 {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  text-align: left;
}

/* Labels */
.tlsms-login-box label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #374151;
}

/* Inputs */
.tlsms-login-box input {
  width: 100%;
  height: 48px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 15px;
}

/* Buttons */
.tlsms-login-box .button {
  width: 100%;
  height: 48px;
  margin-top: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
}

.tlsms-btn-send,
.tlsms-btn-verify {
  background: #f26522;
  border: none;
  color: #fff;
}

.tlsms-btn-send:hover,
.tlsms-btn-verify:hover {
  background: #e45713;
}

/* Back button */
.tlsms-btn-back {
  background: transparent;
  border: 1px solid #d1d5db;
  color: #374151;
}

/* Messages */
.tlsms-msg {
  margin-top: 14px;
  font-size: 14px;
}

.tlsms-ok {
  color: #16a34a;
}

.tlsms-err {
  color: #dc2626;
}
