.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    flex-wrap: wrap;
    max-width: 25vw;
}

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

.box {
    background-color: whitesmoke;
    border-radius: 10px;
    padding: 3rem;
    border: 1px solid #b8b8b8;
    -webkit-box-shadow: 28px 4px 33px 0px rgba(61,61,61,0.55);
    -moz-box-shadow: 28px 4px 33px 0px rgba(61,61,61,0.55);
    box-shadow: 28px 4px 33px 0px rgba(61,61,61,0.55);
    align-self: flex-start;
}

.pt-4 {
    padding-top: 1.25rem;
}

.button {
    border-radius: 4px;
}

.logo {
    width: 20vw;
}

body {
    background-color: rgb(245, 247, 250);
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    
    /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
    opacity: 0;
    transition: opacity 1s;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }