@import url("https://fonts.googleapis.com/css?family=Rubik");

p, div {
  font-family: "Rubik", sans-serif;
  text-align: center;
  margin-top: -1%;
}

input {
  width: 20em;
  height: 3em;
  box-sizing: border-box;
  display: block;
  border-width: 0;
  margin-left: auto;
  margin-right: auto;
  border-radius: 7px;
  font-size: 1.1em;
  font-family: "Rubik", sans-serif;
  background: linear-gradient(to bottom, #FFF, #F6F6F6);
}

input[type="email"] {
  text-indent: 10px;
}

body {
  background-color: #F0F0F0;
}

@keyframes animate-in {
  0% {transform: translateX(150%);}
  100% {transform: translateX(0);}
}

@keyframes animate-out {
  0% {transform: translateX(0);}
  100% {transform: translateX(-150%);}
}

@keyframes animate-back {
  0% {transform: translateX(0);}
  100% {transform: translateX(150%);}
}

@keyframes animate-back1 {
  0% {transform: translateX(-150%);}
  100% {transform: translateX(0);}
}

@keyframes flyIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

button {
  color: #FFF;
  width: 10em;
  height: 3em;
  margin: 10px;
  margin-top: 5%;
  border-width: 0;
  margin-left: auto;
  margin-right: auto;
  display: inline;
  border-radius: 7px;
  background-color: #378DF9;
  font-family: "Rubik", sans-serif;
  background: linear-gradient(to bottom, #378DF9, #2F72D1);
  transition: all 0.3s ease;
}

button span {
  display: inline-block;
  transform: scale(1.3);
  line-height: 3em;
}

button:active {
  transform: translateY(2px);
}

.pinError {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.pinError-content {
  border-radius: 7px;
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  transform: scale(0);
  animation: flyIn 0.2s forwards;
}

.email {
  text-align: center;
}

.back {
  color: #000;
  margin-right: 20px;
  background-color: #FFF;
  background: linear-gradient(to bottom, #FFF, #F6F6F6);
}

.confirm {
  display: none;
  align-items: center;
}

.pin {
  display: none;
  text-align: center;
}

#logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -10%;
  height: auto;
  width: 75%;
}

#final {
  width: 43%;
  height: 43%;
  float: left;
}

.selectedMail {
  color: #3db13d;
}

.pin-inputs {
  display: flex;
  margin-bottom: 10px;
  justify-content: center;
}

.pin-inputs input {
  width: 3em;
  height: 3em;
  margin: 0 5px;
  text-align: center;
}