:host {
  display: flex;
  align-items: center;
  justify-content: center;
}

.box{
    max-width: 32rem;
    height: calc(100% - 6rem);
    max-height: 40rem;
    width: 100%;
}

.box {
  background-color: white;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  position: relative;
  min-height: 20rem;

  padding: 2rem 4rem;
  box-sizing: border-box;
}

.header {
  .title {
    color: #464646;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 1rem;
    text-transform: uppercase;
  }

  .subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: lighter;
    font-size: 20px;
    padding: 1rem;
    color: rgba(244, 244, 244, 1);
  }
}

.spinner {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  transition: all 1s ease;
  width: 1.5rem;
  height: 1.5rem;
}

.spinner.empty {
  right: 50%;
  top: 50%;
  margin-right: -2rem;
  height: 4rem;
  width: 4rem;
}