: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 input {
  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 .show-password {
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
  opacity: 0.5;
}

.form-group input: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;
}

#forgot-your-password {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.7;
  text-align: center;
}

#dont-have-an-account a, #forgot-your-password span {
  color: #222222;
  text-decoration: underline;
}

.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;
}

#confirmation-code-page {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 30px;
}

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

#password-reset-page-confirmation-code, #password-reset-page {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
}

/* 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) {
 
}