* {box-sizing: border-box}

body {
  font-family: 'Poppins', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

img[alt=forgot] {
  height: 15vh;
  margin-top: -50px;
}

img[alt=done] {
  height: 15vh;
  margin-top: -50px;
}

button {
  font-size: 12pt;
  color: white;
  padding: 15px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}

button:hover {
  opacity:1;
}

.cancelbtn, .continuebtn {
  float: left;
  width: 50%;
}

.cancelbtn {
  background-color: #ccc;
  color: black;
}

.continuebtn {
  background-color: #cc3335;
}

.okbtn {
  background-color: #cc3335;
}

.container {
  padding: 16px;
  text-align: center;
}

.farewell {
  display: block; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* auto: Enable scroll if needed */
  background-color: #474e5d;
  padding-top: 50px;
}

.farewell-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 50%; /* Could be more or less, depending on screen size */
  text-align: center;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

@media screen and (max-width: 640px) {
  .cancelbtn, .continuebtn {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .farewell-content {
    width: 90%;
  }
}

@media screen and (min-width: 641px) and (max-width: 1007px) {
  .farewell-content {
    width: 70%;
  }
}