*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Segoe UI,Tahoma,sans-serif;
  background:
  radial-gradient(circle at top,#35220f,#15110d 55%,#0d0a08 100%);
  color:#f5f5f5;
  min-height:100vh;
}

.page{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:30px 18px;
}

.card{

  width:100%;
  max-width:460px;

  background:#1b140d;

  border:2px solid #9b6b21;

  border-radius:12px;

  padding:40px 28px;

  text-align:center;

  box-shadow:
  0 0 0 2px #3b2912 inset,
  0 10px 35px rgba(0,0,0,.45);
}

.eyebrow{

  display:inline-block;

  padding:8px 18px;

  border:1px solid #8f6825;

  border-radius:40px;

  color:#d7b35b;

  font-size:13px;

  margin-bottom:20px;

  background:#24190d;
}

h1{

  font-size:42px;

  color:#f0cb68;

  margin-bottom:15px;

  letter-spacing:1px;

  font-weight:700;
}

.lead{

  color:#dadada;

  line-height:1.7;

  margin-bottom:35px;

  font-size:17px;
}

.button{

  display:block;

  width:100%;

  text-decoration:none;

  padding:18px;

  font-size:20px;

  font-weight:bold;

  border-radius:8px;

  transition:.2s;

  margin-bottom:28px;
}

.primary{

  background:#2d8f3b;

  color:white;

  border:2px solid #4bc65d;
}

.primary:hover{

  background:#39a848;
}

.primary:active{

  transform:scale(.98);
}

.hint{

  color:#d2d2d2;

  line-height:1.6;

  font-size:15px;

  margin-bottom:14px;
}

.subtle{

  color:#9e9e9e;

  font-size:14px;
}

@media(max-width:600px){

.card{

  padding:30px 20px;
}

h1{

  font-size:34px;
}

.lead{

  font-size:16px;
}

.button{

  font-size:18px;

  padding:16px;
}

.hint{

  font-size:14px;
}

}


/* ==============================
   Referral Page
==============================*/

.code-box{
  margin:25px 0;
  padding:18px;
  border:2px solid #8f6825;
  border-radius:10px;
  background:#24190d;
  text-align:center;
}

.code-label{
  display:block;
  font-size:13px;
  color:#bfa77a;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:8px;
}

.code-value{
  display:block;
  color:#f0cb68;
  font-size:30px;
  font-weight:700;
  letter-spacing:3px;
  word-break:break-all;
}

.status{
  min-height:24px;
  margin-top:18px;
  color:#6ed86e;
  font-size:14px;
  line-height:1.5;
}

.steps{
  margin-top:28px;
  padding-left:22px;
  text-align:left;
  color:#d8d8d8;
  line-height:1.8;
}

.steps li{
  margin-bottom:10px;
}

.steps strong{
  color:#f0cb68;
}

.button:disabled{
  opacity:.65;
  cursor:not-allowed;
  background:#5b5b5b;
  border-color:#7b7b7b;
}

@media(max-width:600px){

.code-box{
  padding:16px;
}

.code-value{
  font-size:24px;
  letter-spacing:2px;
}

.steps{
  font-size:14px;
}

.status{
  font-size:13px;
}

}