.my-wrap{
  max-width: 900px;
  margin: 40px auto 80px;
  padding: 0 18px;
}

.welcome h1{
  font-size: 34px;
  margin-bottom: 8px;
  color: var(--neon);
}

.welcome p{
  color: var(--muted);
  max-width: 700px;
  line-height: 1.6;
}

/* Access section */
.access{
  margin-top: 28px;
}

.access h2{
  margin-bottom: 10px;
}

.muted{
  color: var(--muted);
  line-height: 1.6;
  max-width: 720px;
}

/* Login button */
.btn-login{
  display: inline-block;
  margin-top: 18px;

  padding: 14px 20px;
  border-radius: 14px;

  font-weight: 900;
  letter-spacing: .3px;
  text-decoration: none;

  color: #FFA500;
  background: rgba(255,165,0,0.14);
  border: 1px solid rgba(255,165,0,0.45);

  transition: all 0.2s ease;
}

.btn-login:hover{
  background: rgba(255,165,0,0.22);
  transform: translateY(-1px);
}

/* Hint */
.hint{
  margin-top: 12px;
  color: var(--muted);
}

.hint a{
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.hint a:hover{
  color: #FFA500;
}

/* Help */
.help{
  margin-top: 36px;
}

.help ul{
  margin: 10px 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.support{
  margin-top: 10px;
}

.support a{
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.support a:hover{
  color: #FFA500;
}

/* Mobile */
@media (max-width: 640px){
  .welcome h1{
    font-size: 28px;
  }
}
/* Footer */
.footer{
  margin-top: 50px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.55);
  text-align: center;
}