.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  transition: ease-in 0.3s, transform 0.3s, background-color 0.3s, color 0.3s;
}

.button.web {
  width: auto;
}

.button:hover.web {
  transform: scale(1.1);
  background-color: white;
  color: black;
}

.button svg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  stroke: white;
}

.button:hover.web svg path {
  stroke: black;
}

.social-id {
  width: 100%;
}

.button.insta {
  width: calc(50% - 10px);
  background: linear-gradient(to right, #00000000, #00000000);
  border-color: #ffffff;
}

.button:hover.insta {
  transform: scale(1.1);
  background: linear-gradient(to right, #ff8400, #ff0000);
}

.button.fb {
  width: calc(50% - 10px);
  background-color: #f0953300;
  border-color: #ffffff;
}

.button:hover.fb {
  transform: scale(1.1);
}

#second-section {
  align-self: center;
  /*margin: 10vh 70px 5vh 70px;*/
  padding: 40px;
}

.email-signup {
  font-family: "Righteous", sans-serif;
  max-width: 1000px;
  background-color: #ffffff;
  border-width: 2px;
  border-radius: 8px;
  border-color: rgb(0, 0, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 350px;
}

.email-signup form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .email-signup form {
  }
}

label {
  margin-bottom: 8px;
  font-weight: bold;
  color: rgba(0,0,0,0.6);
  font-family: 'Expletus Sans', sans-serif;
  width: 100%;
}

input {
  padding: 10px;
  margin-bottom: 15px;
  border: 0px solid #ffffff;
  border-radius: 5px;
  font-size: 1rem;
  padding: 15px;
}

input[type="email"], input[type="text"], input[type="tel"] {
  background-color: transparent;
  border: 2px solid #ffffff;
  /*color: #ffffff;*/
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

input:focus {
  background-color: whitesmoke;
  border: 2px solid #ffffff;
  color: #000000;
  transform: scale(1.05);
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.email-signup button {
  background-color: #ffffff;
  color: #ffffff;
  border: 0px solid #000000;
  cursor: pointer;
  margin-top: 20px;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 20px 15px 20px;
  width: 50%;
  align-self: center;
  font-family: 'Expletus Sans';
}

.btn-grad {
  background-image: linear-gradient(to right, #232526 0%, #414345 51%, #232526 100%);
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  /*box-shadow: 0 0 20px #999999;*/
  border-radius: 10px;
  display: block;
  background-position: left center;
}

.btn-grad:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
  transition: 0.5s ease-in-out;
}

#code-field {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-items: center;
  padding: 20px 40px;
  background-color: #000000;
  border-radius: 10px;
  margin-top: 10px;
  transition: width 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  width: inherit;
}

#code-label {
  color: #ffffff;
}

#code-entry {
  color: white;
}

#code-entry:-internal-edge-excel-like-autofill-previewed, #code-entry:-internal-edge-excel-like-autofill-selected, #code-entry:-internal-edge-excel-like-autofill-active, #code-entry:-internal-edge-autofill-selected {
  color: #fff;
}

#code-entry::placeholder {
  color: rgba(255,255,255,0.6);
}

.code-checking {
  box-shadow: 0 0 20px orange;
  animation: glow 1s infinite alternate;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 20px orange;
  }
}

.code-valid {
  box-shadow: 0 0 20px 10px green;
  border-color: green;
}

.code-valid .code-valid:disabled {
  background-color: green;
}

#nextBt {
  display: none;
}

#code-entry.form-control:focus {
  color: white !important;
  background-color: rgba(0,0,0,0);
}

#emailInput {
  border-color: rgba(0,0,0,0.1);
}

#first-pt, #second-pt {
  display: flex;
  flex-direction: column;
  width: inherit;
  align-items: center;
}

#second-pt {
  display: none;
}

