* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: url("../img/login-bg-2.jpg") center center/cover no-repeat;
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito&family=Poppins&display=swap");

* {
  --light-green: rgb(144, 238, 144);
  --mid-green: rgb(11, 218, 81);
  --dark-green: rgb(34, 139, 34);
  --mid2-green: #00693e;

  --name-font: "Poppins", sans-serif;
  --font-2: "Baloo Bhai 2", cursive;
  --font-3: "Comfortaa", cursive;
  --font-4: "Montserrat", sans-serif;
  --nunito: "Nunito", sans-serif;
}

.login-box {
  display: flex;
  width: fit-content;
  justify-content: center;
  /* align-items: center; */
  height: 100vh;
  /* border: 2px solid black;
     */
  margin: auto;
  margin-top: 20px;
  border-radius: 20px;
  /* box-shadow: 2px 2px 10px black; */
  font-family: var(--nunito);
}

.left .top {
  text-align: center;
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 3px rgb(4, 104, 12);
}
.top img {
  width: 150px;
  height: 150px;
  /* box-shadow: 2px 2px ; */
  margin: 0px;
}

/* .right{
    width: 40%;
    height: auto;
    background-color: pink;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;

} */

.login-box input {
  width: 90%;

  border: none;
  border-radius: 5px;
  outline: none;
  height: max-content;
  padding: 8px;
  margin: 5px auto;
}

.login-box input[type="text"],
input[type="password"] {
  border: 2px solid rgb(146, 255, 132);
  border-radius: 10px;
  background: rgb(218, 253, 232);
  outline: none;
  height: auto;
  padding: 8px;
  margin: 5px auto;
  margin-bottom: 10px;

  color: rgb(31, 0, 0);
  font-size: 1.1rem;
  font-family: var(--font-4);
}

.data {
  /* margin: 50px; */
  padding: 10px;
  font-family: var(--font-4);
}

.login-box label {
  font-size: 1.3rem;
  color: rgb(247, 230, 2);
  font-weight: bold;
  font-family: var(--font-4);
  margin-bottom: 8px;
  /* margin-bottom: 15px; */
}

.login-box input[type="submit"] {
  border: none;
  outline: none;
  height: auto;
  background: #1cdb72;
  color: rgb(0, 0, 0);
  font-size: 1.3rem;
  font-family: var(--font-3);
  text-align: center;
  /* padding-bottom: 35px; */
  border-radius: 20px;
  padding: 5px;
  transition: all 0.5s;
}

.login-box input[type="submit"]:hover {
  color: rgb(255, 255, 255);
  cursor: pointer;
  background-color: rgb(7, 197, 17);
}

.left a {
  width: 45%;
  color: rgb(141, 255, 11);
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  margin:10px 0px;
  text-align: center;
  padding: 2px 10px;
}
a:hover {
    color: ivory;
  text-shadow: 1px 1px 10px rgb(27, 31, 31);
}

/* media queries */

@media screen and (max-width: 600px) {
  .login-box {
    display: block;
    width: 75%;
    margin: auto;
    padding: 10px;
  }

  #login-btn {
    width: 92%;
    margin-right: 20px;
    background: none;
  }

  .left a {
    width: auto;
    color: rgb(141, 255, 11);
    font-size: 16px;
    /* font-weight: bold; */
    text-decoration: none;
    margin: 10px 0px;
    padding: 10px;
  }
}

@media screen and (max-width: 425px) {
  .login-box {
    display: block;
    width: 90%;
    margin: auto;
    padding: 10px;
  }

  #login-btn {
    width: 95%;
    /* margin:5px 20px; */
    background: none;
  }

  .left a {
    width: auto;
    color: rgb(141, 255, 11);
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    margin: 10px 10px;
    padding: 10px 5px;
  }
}

@media screen and (max-width: 375px) {
  .login-box {
    display: block;
    width: 98%;
    margin: auto;
    padding: 10px;
  }

  .login-box label{
      font-size: 1.1rem;
  }
  .login-box input[type="text"],
  input[type="password"] {
    padding: 10px;
    margin: 5px;
    font-size: 1rem;
    font-family: var(--font-4);
  }

  #login-btn {
    width: 100%;
    margin:5px -10px;
    background: none;
  }

  .left a {
    width: auto;
    color: rgb(141, 255, 11);
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    margin: 10px 5px;
    padding: 5px;
  }
}
