body {
  padding: 0;
  margin: 0;
  --main-font: Montserrat;

  background-color: black;
  
  --background-dark: black;
  --background-mid: #0d0d0d;
  --background-light: #1f1f1f;

  --white: white;
  --black: black;
  --white-muted: #b3b3b3;
  --dark-gray: #666666;
  --brand-color: #e85d17;
}

p,
h1 {
  margin: 0;
}

.mb14 {
  margin-bottom: 14px;
}

.mb24 {
  margin-bottom: 24px;
}

.mb40 {
  margin-bottom: 40px;
}

main {
  height: 100dvh;
  background-image: url("assets/artemis2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-clip: border-box;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title-large {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 60px;
}

.normal-text {
  font-family: var(--main-font);
  font-weight: medium;
  font-size: 16px;
  line-height: 150%;
}

.micro-text {
  font-family: var(--main-font);
  font-weight: normal;
  font-size: 12px;
}

.text-white {
  color: var(--white);
}

.text-muted {
  color: var(--white-muted);
}

.text-dark {
  color: var(--dark-gray);
}

.vertical-sepbar {
  width: 1px;
  height: 14px;
  border-radius: 1px;
  background-color: var(--background-light);
}

.main-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
}

.form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.email-input-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.form-input {
  padding: 12px 14px;
  background-color: var(--background-mid);
  border: 1px solid var(--background-light);
  border-radius: 10px;
  color: var(--white-muted);
  font-size: 16px;
  font-family: var(--main-font);
  width: 100%;
  transition: 0.4s;
}

.form-input:hover {
  background-color: var(--background-light);
}

.form-input:focus {
  outline: 2px solid var(--brand-color);
}

.btn-main {
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--main-font);
}

.white-btn {
  background-color: var(--white);
  color: var(--black);

  transition: 0.4s;
}
.white-btn:hover {
  background-color: var(--white-muted);
}

.lable {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  align-items: center;
}

.lable p {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--main-font);
  color: var(--white);
}

.lable img {
  width: 28px;
  border-radius: 255px;
  height: auto;
}

footer {
  background-color: var(--background-mid);
  padding: 40px 40px;
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-text-row {
  display: flex;
  gap: 14px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-link {
  height: 20px;
  width: auto;
  fill: var(--white);
  transition: 0.4s;
}
.social-link:hover {
  fill: var(--brand-color);
}
.title-color-change {
  color: var(--white-muted);
}

.main-container .lable {
  animation: intro-animation-h1 1s ease-in-out;
}
.main-container .title-large,
.normal-text {
  animation: intro-animation-p 1s ease-in-out;
  animation-delay: 100ms;
}

.main-container .form {
  animation: intro-animation-a 1s ease-in-out;
  animation-delay: 200ms;
}

@keyframes intro-animation-h1 {
  from {
    filter: opacity(0);
    transform: translateY(24px);
  }
  to {
    filter: opacity(1);
  }
}
@keyframes intro-animation-p {
  from {
    filter: opacity(0);
    transform: translateY(24px);
  }
  to {
    filter: opacity(1);
  }
}
@keyframes intro-animation-a {
  from {
    filter: opacity(0);
    transform: translateY(24px);
  }
  to {
    filter: opacity(1);
  }
}

.checkbox {
  margin: 0;
  width: 14px;
  height: 14px;
  accent-color: var(--brand-color);
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

#success-message {
  display: none;
}
