button,
input[type="submit"] {
  cursor: pointer !important;
}
.drop-zone {
  max-width: 200px;
  width: 100%;
  height: 200px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  color: #cccccc;
  border: 4px dashed #009578;
  border-radius: 10px;
}

.drop-zone--over {
  border-style: solid;
}

.drop-zone__input {
  display: none;
}

.drop-zone__thumb {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: #cccccc;
  background-size: cover;
  position: relative;
}

.drop-zone__thumb::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  text-align: center;
}
.main-container {
  max-width: 1400px;
  margin: auto;
}
.drop-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.drop-container > div {
  position: relative;
  margin: 0 20px 20px;
  max-width: 258px;
  width: 100%;
}
.logo-image {
  padding: 20px;
}
#authCode {
  padding: 10px 20px 10px 20px;
  width: 100%;
  max-width: 220px;
  color: #5c5c5c !important;
  background-color: #ffffff;
  border-width: 1px 1px 1px 1px;
  border-color: #bdb1b1;
  border-radius: 4px;
  margin: auto;
}
#submitBtn,
#resetBtn{
  padding: 10px 20px 10px 20px;
  width: 100%;
  max-width: 258px;
  color: #fff !important;
  background-color: #009578;
  border-width: 1px 1px 1px 1px;
  border-color: #009578;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}
#submitBtn{
  margin: 10px auto 0;
}
#resetBtn{
  margin: 0 auto 10px;
}
.form-group {
  display: flex;
  margin-bottom: 15px;
}
input:focus {
  outline: none;
}
.d-flex {
  display: flex;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.close-btn {
  position: absolute;
  top: 0px;
  right: 6px;
  background: none;
  border: none;
  font-size: 44px;
  z-index: 100;
  cursor: pointer;
  line-height: 37px;
  color: #cf3f3f;
  display: none;
}
.close-btn.active {
  display: block;
}
.close-btn:hover {
  opacity: 0.7;
}
.drop-zone__prompt {
  display: none;
}
.drop-zone__prompt.active {
  display: inline;
}
.warn-text {
  font-size: 20px;
  color: #e73030;
  text-align: center;
  display: block;
}
.warn-text.active {
  display: none;
}
.auth-box {
  flex-direction: column;
}
.meter {
  background: #ccc;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);
  display: block;
  height: 10px;
  max-width: 300px;
  margin: auto;
  padding: 2px;
  position: relative;
  display: none;
  overflow: hidden;
}
.meter.active{
  display: block;
}
.meter > span {
  display: block;
  height: 100%;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #2bc253;
  background-image: linear-gradient(to top, #2bc253 37%, #54f054 69%);
  box-shadow: inset 0 2px 9px rgba(255,255,255,0.3) inset 0 -2px 6px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
  transition: width 2s ease-out;
}

/* .loading {
  height: 0;
  width: 0;
  padding: 15px;
  border: 6px solid #ccc;
  border-right-color: #888;
  border-radius: 22px;
  -webkit-animation: rotate 1s infinite linear;
  margin: auto;
  display: none;
}
.loading.active{
    display: flex;
} */
@-webkit-keyframes rotate {
  /* 100% keyframe for  clockwise. 
       use 0% instead for anticlockwise */
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.ikey-title,
.ikey-response{
  text-align: center;
  margin-top: 0;
  margin-bottom: 15px;
}
.ikey-title{
  font-family: sans-serif;
}
.ikey-response{
  font-size: 19px;
  font-family: monospace;
  font-style: italic;
  color: #434040;
}
body {
	    background-color: #D3D3D3; /* Light grey */
}


