
:root {
  --smag-orange:    #FF914D;
  --smag-dark-blue: #4C5270;
}

.smag-wrap{
  min-height: 60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 24px 16px;
}
.smag-card{
  width:100%;
  max-width: 520px;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.smag-title{
  margin:0 0 14px;
  font-size: 28px;
  line-height:1.2;
}
.smag-alert{
  padding: 12px 14px;
  border: 1px solid #ffb3b3;
  background: #ffecec;
  border-radius: 12px;
  margin: 0 0 12px;
}
.smag-form{ display:flex; flex-direction:column; gap:10px; }
.smag-label{ font-weight: 600; }
.smag-input{
  width:100%;
  padding: 12px 14px;
  border: 1px solid #cfd6df;
  border-radius: 12px;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  outline: none;
}
.smag-input:focus{ border-color: var(--smag-dark-blue); box-shadow: 0 0 0 3px rgba(76,82,112,0.12); }
.smag-btn{
  width:100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: var(--smag-orange);
  color:#fff;
  font-size:16px;
  font-weight: 700;
  cursor:pointer;
}
.smag-btn:hover{ opacity:0.88; background: var(--smag-orange) !important; color:#fff !important; }
.smag-help{
  margin: 12px 0 0;
  color:#6b7280;
  font-size: 12px;
}

.smag-add-rating-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--smag-orange);
  color:#fff;
  text-decoration:none;
  font-weight: 700;
}
.smag-add-rating-btn:hover{ opacity:0.88; background: var(--smag-orange) !important; color:#fff !important; }
