* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  width: 60em;
  margin: 0 auto;
  font: 12px Arial, Tahoma, Helvetica, FreeSans, sans-serif;
  text-transform: inherit;
  color: #333;
  background: #e7edee;
  line-height: 18px;
}

.logo {
  padding-top: 10px;
}

a {
  text-decoration: none;
  color: #333
}

h1 {
  font-size: 1.9em;
  margin: 10px 0
}

p {
  margin: 8px 0
}

.footer {
  text-align: center;
  text-decoration-line: underline;
}

.wrap {
  text-align: center;
  margin: 15px auto;
  padding: 20px 25px;
  background: white;
  border: 2px solid #DBDBDB;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}

.progress-container {
  position: relative;
  width: 100%;
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  height: 30px;
  margin-top: 20px;
}

.progress-bar {
  height: 30px;
  width: 0;
  background-color: #4caf50;
  color: #333333;
  transition: width 0.4s ease;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}

.status {
  animation: hideIt 2s forwards;
  animation-delay: 10s;
  padding: 8px 35px 8px 14px;
  margin: 20px 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

@keyframes hideIt{
  to{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: 0;
    margin: 0;
    padding: 0;
  }
}

input[type="submit"] {
  cursor: pointer;
  width: 80%;
  border: none;
  background: #991D57;
  background-image: linear-gradient(bottom, #8C1C50 0%, #991D57 52%);
  background-image: -moz-linear-gradient(bottom, #8C1C50 0%, #991D57 52%);
  background-image: -webkit-linear-gradient(bottom, #8C1C50 0%, #991D57 52%);
  color: #FFF;
  font-weight: bold;
  margin: 10px;
  padding: 10px;
  border-radius: 5px;
}

input[type="submit"]:hover {
  background-image: linear-gradient(bottom, #9C215A 0%, #A82767 52%);
  background-image: -moz-linear-gradient(bottom, #9C215A 0%, #A82767 52%);
  background-image: -webkit-linear-gradient(bottom, #9C215A 0%, #A82767 52%);
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

input[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}