/* ✅ CookNearMe - Unified Input Styles for Mobile & Passcode Boxes */
.digit-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.mobile-box,
.digit-box {
  width: 48px;
  height: 58px;
  text-align: center;
  font-size: 22px;
  border: 1px solid #ccc;
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mobile-box:focus,
.digit-box:focus {
  border-color: #198754;
  outline: none;
  box-shadow: 0 0 8px rgba(25,135,84,0.3);
}

@media (max-width: 576px) {
  .mobile-box,
  .digit-box {
    width: 40px;
    height: 50px;
    font-size: 18px;
  }
}

.btn-success {
  background-color: #198754;
  border: none;
}
.btn-success:hover {
  background-color: #157347;
}

.small-links a {
  text-decoration: none;
  color: #198754;
  font-weight: 500;
}
.small-links a:hover {
  text-decoration: underline;
}
