* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  /* font-family:'Jost',sans-serif; */
  background: linear-gradient(145deg, #f7f4ef, #ede8df, #f2ece1);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.root {
  position: relative;
  width: 100%;
  padding: 20px;
}
.card {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.logo {
  font-size: 17px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.badgeWrap {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  margin-top: 20px;
}

.badge {
  background: #daa520;
  color: #fff;
  padding: 6px 20px;
  font-size: 16px;
}

.watchRing {
  font-size: 48px;
  margin: 20px 0;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
}

h1 em {
  display: block;
  color: #daa520;
  font-style: italic;
}

.sub {
  margin: 20px 0;
  color: #666;
}

form {
  background: #fff;
  padding: 25px;
  border: 1px solid #eee;
  margin-top: 20px;
  text-align: left;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field {
  margin-bottom: 15px;
}

.field label {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.field input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}
.msg {
  font-size: 14px;
  color: #c0392b;
  margin-top: 4px;
  display: block;
}

.ok {
  color: #27ae60;
}

button {
  width: 100%;
  padding: 12px;
  background: #daa520;
  border: none;
  color: #fff;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
}

/* .successBox{
  margin-top:15px;
  padding:10px;
  background:#eaf7ef;
  border:1px solid #27ae60;
  display:none;color:#1a6e38
} */

.features {
  margin-top: 35px;
  display: flex;
  gap: 10px;
  text-align: center;
  justify-content: space-between;
  align-items: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.icon {
  font-size: 22px;
  margin-bottom: 6px;
  width: 23px;
  height: 30px;
}

.title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.subtitle {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.brands {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

.brand-chip {
  padding: 18px 10px;
  font-size: 9.5px;
  color: #555;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid rgba(218, 165, 32, 0.12);
  text-align: center;
  font-family: "Jost", "Arial", sans-serif;
  user-select: none;
  opacity: 0.42;
  background: rgba(255, 255, 255, 0.6);
  transform: none;
  box-shadow: none;
  transition: all 0.25s ease;
}

.brand-chip:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(218, 165, 32, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(218, 165, 32, 0.1);
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #333;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}
