#otp-verify-root {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 60px auto;
  padding: 32px 28px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(14, 30, 37, 0.08);
  font-family: system-ui, Arial, sans-serif;
  text-align: center;
}

#otp-verify-root label {
  display: block;
  width: 100%;
  margin-bottom: 6px;
  color: #222;
  font-weight: 600;
  text-align: left;
}

#otp-verify-root input[type="email"],
#otp-verify-root input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  margin: 8px 0 14px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#otp-verify-root input:focus {
  border-color: #bbb;
  box-shadow: 0 0 0 3px rgba(236, 97, 87, 0.15);
}
#logo {
  pointer-events: none!important;
}
#logo img{
  max-height: 48px!important;
}
.buttons.sf-menu {
  display: none!important;
}
.otp-btn {
  display: inline-block;
  background-color: #ec6157;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 32px;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.otp-btn:hover,
.otp-btn:focus {
  background-color: #e35046;
  transform: scale(1.02);
}

.otp-btn:active {
  transform: scale(0.98);
}

#otp-verify-root .msg {
  margin-top: 14px;
  color: #444;
  font-size: 0.95rem;
  min-height: 18px;
}

#otp-verify-root .msg.error { color: #b00020; }
#otp-verify-root .msg.success { color: #087f23; }

.field-error {
  margin: 6px 0;
  color: #b00020;
  font-size: 0.9rem;
  text-align: left;
  width: 100%;
}

#otp_code_area {
  margin-top: 20px;
  min-width: 100%;
}

@media (max-width: 480px) {
  #otp-verify-root {
    margin: 30px 16px;
    padding: 24px 20px;
    border-radius: 10px;
  }
  .otp-btn {
    width: 100%;
  }
}
