body {
  display: flex;
}

.sign-up-con {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 551px;
  height: 635px;
  background: #ffffffff; /* white */
  border-radius: 4px; /* border-m */
  box-shadow: 0px 0px 1px #171a1f, 0px 0px 2px #171a1f; /* shadow-xs */
}

#hour {
  width: fit-content;
  margin: auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 68px;
  color: #171a1fff;
  margin-top: 44px;
}

.createanaccount {
  width: fit-content;
  margin: auto;
  font-size: 25px;
  font-weight: 300;
  line-height: 28px;
  color: #9095a1ff;
  margin-top: -10px;
}

#signineye {
  top: 310px;
}

.signupinputscon {
  width: fit-content;
  margin-bottom: 10px;
}

.signupinputscon:nth-child(1) {
  margin-bottom: 24px;
}

.allincon {
  margin: auto;
  width: fit-content;
  margin-top: 38px;
}

.signupemailcon {
  width: fit-content;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.signupemailinput input {
  width: 359px;
  height: 50px;
  border: 1px solid gray;
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 0;
}

::placeholder {
  color: lightgray;
  font-size: 14px;
  font-weight: 545;
}

.signupemailinput input:hover {
  color: #bdc1caff; /* neutral-400 */
  box-shadow: 0 1px 0 #9095a1;
}
/* focused */
.signupemailinput input:focused {
  color: #bdc1caff; /* neutral-400 */
  box-shadow: 0 1px 0 #9095a1;
}
/* disabled */
.signupemailinput input:disabled {
  color: #bdc1caff; /* neutral-400 */
  box-shadow: 0 1px 0 #9095a1;
}

img {
  width: 100%;
  height: 100%;
}

.passwordeye {
  display: flex;
}

.eye {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 460px;
  top: 380px;
  cursor: pointer;
}

.signupemailinput:nth-child(2) {
  position: relative;
}

.checkbox {
  width: fit-content;
}

input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  filter: sepia(100%) brightness(80%) hue-rotate(170deg) saturate(60%) contrast(300%);
}

.agree {
  width: fit-content;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #171a1fff;
}

.checkagree {
  display: flex;
  margin-top: 24px;
  gap: 0px;
}

.signupbtn {
  width: fit-content;
  margin: auto;
  margin-top: 25px;
}

.signupbtn input[type="submit"] {
  width: 359px;
  height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #ffffffff; /* white */
  background: #0e252cff; /* primary-500 */
  opacity: 1;
  border: none;
  border-radius: 4px; /* border-m */
  box-shadow: 0px 8px 17px #0e252c, 0px 0px 2px #0e252c;
  cursor: pointer;
}

.signupbtn input[type="submit"]:hover {
  color: #ffffffff; /* white */
  background: #1b4754ff; /* primary-450 */
}
/* Pressed */
.signupbtn input[type="submit"]:hover:active {
  color: #ffffffff; /* white */
  background: #286a7eff; /* primary-400 */
}
/* Disabled */
.signupbtn input[type="submit"]:disabled {
  opacity: 0.4;
}

.already {
  width: fit-content;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #171a1fff;
  margin: auto;
  margin-top: 35px;
}

span {
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  color: #0e252cff;
}

.firstnamelastname {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.names {
  width: 170px;
  height: 50px;
  border: 1px solid gray;
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 0;
}

.names:hover {
  color: #bdc1caff; /* neutral-400 */
  box-shadow: 0 1px 0 #9095a1;
}

.firstnameinlab {
  /* border: 1px solid red; */
  width: fit-content;
  height: fit-content;
}

.firstname {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.names:focused {
  color: #bdc1caff; /* neutral-400 */
  box-shadow: 0 1px 0 #9095a1;
}
/* disabled */
.names:disabled {
  color: #bdc1caff; /* neutral-400 */
  box-shadow: 0 1px 0 #9095a1;
}

#slash {
  width: fit-content; height: fit-content; position: absolute; top: 377.4px; left: 465px; color: gray; font-weight: 300;
}

@media screen and (max-width: 480px) {
  body {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #hour {
    font-size: 16px;
    text-align: center;
    line-height: 25px;
    margin-bottom: 20px;
  }

  #slash {
    /* top: 460px; */
    left: 285px;
  }

  .sign-up-con {
    width: 293px;
    height: 635px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .signupemailinput input {
    width: 209px;
  }

  .names {
    width: 100px;
  }

  .firstnamelastname {
    gap: 5px;
    margin-left: 10px;
  }

  .signupinputscon {
    margin: auto;
  }

  .sign-up-con {
    padding-left: 20px;
    padding-right: 20px;
  }

  .agree {
    font-size: 12px;
  }

  .checkagree {
    margin: auto;
    margin-left: 5px;
    margin-top: 20px;
  }

  .signupbtn input[type="submit"] {
    width: 236px;
  }

  .welcomesignup {
    font-size: 24px;
  }

  .createanaccount {
    font-size: 12px;
  }

  .eye {
    left: 280px;
  }
}
