@import url("https://fonts.googleapis.com/css2?family=Jersey+20&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Days+One&family=Dela+Gothic+One&family=Jersey+20&display=swap");

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #dedee2 !important;
}

input:focus {
    border-color: #00f; /* Change to your desired focus color */
    outline: none; /* Optional: Removes the default blue outline */
    box-shadow: 0 0 5px rgba(0, 0, 255, 0.5); /* Optional: Adds a glow effect */
}

* {
  margin: 0;
}
a {
  text-decoration: none !important;
  color: initial;
}

h3 {
  margin-bottom: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.signup {
  /* padding: 4px 15px; */
  font-size: 17px;
  display: grid;
  gap: 10px;
}

.login {
  /* position: relative; */
  display: flex;
  justify-content: space-between;
  /* background-color: #ECECEC; */
  /* z-index: 2; */
  align-items: center;
  height: 100dvh;
}

.login-form {
  padding-left: 10vw;
  position: relative;
}

.login-form--title {
  /* font-size: 5rem; */
  font-size: clamp(4rem, 2.5vw, 3rem); 
  width: fit-content;
  background-color: inherit;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
  /* margin-left: 10vw; */
  margin-top: 10vh;
}

.login-form--title-sub {
  font-size: 5.4rem;
  width: fit-content;
  background-color: inherit;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 33px;
  /* margin-left: 10vw; */
}

.login-form--sub-title {
  font-family: "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.login-form-sub {
  font-family: "Open Sans", "Helvetica Neue", sans-serif;
  font-size: .8465rem;
  width: 40%;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
    
}

.login-form form p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 5px 0;
}

.login-side {
  width: 30%;
  background-color: #284680;
  position: absolute;
  right: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 3;
}

.login-side--img {
  border: none;
  width: 100%;
  right: 40%;
  position: absolute;
}

.login-form--input {
    display: flex;
    flex-direction: column;
}

.login-form--login-title {
    margin-bottom: 14px;
    font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
}

  .login-form--input input {
  border: 1px solid #636363;
  border-radius: 8px;
  background-color: inherit;
  margin-bottom: 5px;
  width: 300px;
  height: 30px;
  padding-left: 20px;
  margin-top: 4px;
}

button {
  background-color: #072127;
  width: 323px;
  height: 33px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

@media only screen and (max-width: 480px) {
  .signup {
    padding: 4px 15px;
    font-size: 17px;
    display: grid;
    gap: 10px;
  }

  .login {
    font-size: 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
  }

  .login-side--img {
    border: none;
    width: 206%;
    left: -38%;
    position: absolute;
    top: 18%;
}


  .login-form--title-sub {
    display: none;
  }

  .login-form--title {
    font-size: 4rem;
    position: relative;
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 400;
    z-index: 5;
    top: -4%;
  }
  .login-form--login-title {
    margin-bottom: 15px;
  }

  .login-form-sub {
    display: none;
  }

  .login-form--input input {
    position: relative;
    width: 300px;
    margin-bottom: 20px;
    width: 250px;
    z-index: 5;
    border: 1px solid #c4bbbb;
  }

  .login-form--sub-title {
    display: none;
  }

  button {
    height: 41px;
    border: none;
    width: 141px;
    border-radius: 5px;
    cursor: pointer;
  }
}


