@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Poppins&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
}

body {
  background: url("Desktop.svg") center/cover fixed no-repeat;
  background-color: #000;
}

.content {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Inter", sans-serif;
}

.mobile-logo {
  display: none;
}

label,
h1,
h6 {
  color: white;
}

h1 {
  font-size: 72px;
  font-weight: 600;
}

.subtitle {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px;
  color: white;
  font-family: "Poppins", sans-serif;
  margin-top: 10px;
  margin-bottom: 40px;
}

.wrapper {
  max-width: 540px;
}

.inner-form {
  background-color: #3f4146;
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  margin-bottom: 32px;
}

.form-label {
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 8px;
}

.width-100 {
  width: 100%;
}

.form-control {
  background-color: #2d2e31;
  outline: none;
  border: none;
  color: white;
  height: 44px;
  border-radius: 0px;
  font-weight: 400;
}

.form-control {
  width: 100%;
}

.submit {
  width: 100%;
  background-color: #3f4146;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 15px 0px;
  border: none;
  line-height: 24px;
  border-radius: 0px;
}

.submit:hover {
  background-color: white;
  color: #424242;
  border: none;
}
.submit:active {
  background-color: white;
  color: #424242;
  border: none;
}
.submit:disabled {
  background-color: white;
  color: #424242;
  border: none;
}

@media only screen and (max-width: 720px) {
  .wrapper {
    max-width: 420px;
  }

  .form-label {
    font-size: 14px;

    font-weight: 600;
  }
}

@media only screen and (max-width: 520px) {
  body {
    background: url("Mobile.svg") center/cover fixed no-repeat;
  }
  .mobile-logo {
    display: block;
    margin-top: 20%;
  }
  .desktop-logo {
    display: none;
  }

  .subtitle {
    margin-top: 15px;
    margin-bottom: 12px;
  }

  .wrapper {
    max-width: 351px;
  }

  .form-label {
    font-size: 14px;
    font-weight: 600;
  }

  .content {
    min-height: 86vh;
    overflow-y: hidden;
    height: 86vh;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    justify-content: space-around;
  }
}

@media only screen and (max-height: 760px) {
  .mobile-logo {
    margin-top: 12px;
  }
}
