:root {
  --color-green-lt: #4bdcc3;
  --color-green-lt-transparent: #4bdcc38c;
  --color-green-dk: #00444f;
  --color-white: rgb(248 248 249);
  --color-black: #2c4251;
  --color-gray-lt: #f7f7f7;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: Nunito Sans;
  height: 100vh;
}

main {
  padding-top: 10px;
  width: 100%;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 1px solid rgb(235, 235, 235);
  height: 48px;
}

.contents-wrapper {
  padding: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  display: block;
  width: 100%;
  opacity: 0.8;
  font-size: 14px;
}

.form-group .show-password {
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
  opacity: 0.5;
}

.form-group input, .form-group select {
  width: 100%;
  background-color: #F7F7F7 !important;
  border-radius: 8px;
  height: 40px;
  outline: 0;
  border: 1px solid lightgray;
  padding: 0 16px;
  box-sizing: border-box;
}

.form-group input:focus, .form-group select:focus {
  border-color: #222222;
  outline: 1px solid #222222;
}

input:-webkit-autofill {
  -webkit-box-shadow:0 0 0 50px #F7F7F7 inset;
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 50px #F7F7F7 inset;
}

.continue-button {
  font-size: 16px;
  font-weight: 700;
  border: 0;
  outline: 0;
  cursor: pointer;
  padding: 12px 24px;
  background-color: var(--color-green-lt);
  color: var(--color-black);
  border-radius: 8px;
}


.form-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 12px;
}

.form-divider::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgb(221, 221, 221);
  margin-right: 16px;
  
}

.form-divider::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgb(221, 221, 221);
  margin-left: 16px;
}

.continue-via-socials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.continue-via-socials-button {
  display: flex;
  cursor: pointer;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #222222;
  outline: 0;
  padding: 12px 24px;
  font-size: 14px;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 300px;
}

.continue-via-socials-button span {
  flex-grow: 1;
  font-weight: 600;
  opacity: 0.7;
}

#dont-have-an-account {
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.7;
  text-align: center;
}

#dont-have-an-account a {
  color: #222222;
}

.exibiting-vs-attending-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.exhibiting-vs-attanding-btn {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(176, 176, 176);
  font-size: 14px;
  font-weight: bold;
  border-radius: 8px;
  width: 120px;
  cursor: pointer;
  gap: 8px;
  box-shadow: rgb(0 0 0/16%) 0 0 6px;
  flex-grow: 1;
  max-width: 180px;
}

.exhibiting-vs-attanding-btn svg {
  height: 24px;
  opacity: 0.7;
  fill: #222222;
}

.exhibiting-vs-attanding-btn span {
  opacity: 0.7;
}

.exhibiting-vs-attanding-btn.selected {
  border-color: var(--color-green-lt);
  background-color: var(--color-green-lt);;
}

.exhibiting-vs-attanding-btn.selected span {
  opacity: 1;
  /* color: white; */
}

.exhibiting-vs-attanding-btn.selected svg {
  opacity: 1;
  /* fill: white; */
}

#exhibiting-company-section {
  display: none;
}

.form-message {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
  display: none;
}

.form-message.error {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
.form-message.warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}


button.disabled {
  opacity: 0.6;
  pointer-events: none;
}

button {
  position: relative;
}

.button-loader {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
}

#register-step-2 {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

#resend-confirmation-code {
  color: var(--color-green-dk);
  opacity: 1;
  font-weight: bold;
}

#have-a-mininghub-account {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 0;
  margin-top: -10px;
}

#have-a-mininghub-account a {
  text-decoration: none;
  font-weight: 700;
  color: var(--color-green-dk);
}

/* Small devices such as large phones (640px and up) */
@media only screen and (min-width: 640px) {
  body {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  main {
    border: 1px solid rgb(176, 176, 176);
    border-radius: 20px;
    max-width: 550px;
  }
}

/* Medium devices such as tablets (768px and up) */
@media only screen and (min-width: 768px) {

  
}

/* Large devices such as laptops (1024px and up) */
@media only screen and (min-width: 1024px) {
  
}

/* Largest devices such as desktops (1280px and up) */
@media only screen and (min-width: 1280px) {
 
}