html {
    font-size: 14px;
    background-color: #fcf6f1;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: transparent;
}

.full-width-div {
    position: absolute;
    width: 100%;
    left: 0;
}

.hero-container {
    color: #ffffff;
    width: 100%;
    padding: 50px 15px 80px 15px;
    background-color: #4158D0;
    background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
}

.hero-container h1 {
    font-size: 36px;
}

.password-pop {
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.password-pop-content {
    box-shadow: 0px 8px 20px rgba(0,0,0,0.06);
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #f5f5f5;
}

.password-value {
    background-color: #ffffff;
    color: #333333;
    font-family: monospace, monospace;
    padding: 18px 12px;
    font-size: 21px;
    width: 100%;
    text-align: center
}