/* login register css*/

.mainbody {
  margin-top: 111px;
  padding: 60px 150px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.maincontainer {
  width: 50%;
  min-width: 650px;
  max-width: 750px;
  background-color: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d7d7d7;
  padding: 40px 100px;
  font-family: "Rubik", sans-serif;
}

.loginlogo {
  height: 95px;
}

.maincontainer h3 {
  font-size: 35px;
  font-weight: 500;
  color: #5e5e5e;
  margin: 25px 0;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: transparent;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
/* .tab button:hover {
      background-color: #ddd;
    } */

/* Create an active/current tablink class */
/* .tab button.active {
      background-color: #ccc;
    } */

/* Style the tab content */
.tabcontent {
  display: none;
}

.tablinks {
  cursor: pointer;
  color: #8c59c8;
  font-weight: 500;
}

.singleinput input[type="text"],
.singleinput input[type="password"],
.singleinput input[type="number"] {
  margin: 3px 0 15px;
  border-radius: 5px;
  padding: 7px 10px;
  border: 1px solid #dfdfdf;
  width: 100%;
}

.singleinput input[type="submit"] {
  background-color: #8c59c8;
  border: 1px solid transparent;
  color: #fff;
  border-radius: 5px;
  padding: 10px 40px;
  font-size: 16px;
  white-space: nowrap;
  width: 100%;
}

.singleinput input[type="text"]:focus-visible,
.singleinput input[type="password"]:focus-visible,
.singleinput input[type="number"]:focus-visible,
.singleinput input[type="submit"]:focus-visible {
  outline: none;
}

.rememberinput {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.login-bottomsection {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 15px;
}

.login-bottomsection p {
  margin: 0;
  color: #142003;
}

.bottomtext {
  margin: 40px 0 0;
}

.instructions {
  margin-bottom: 25px;
  color: #142003;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #a1a1a1;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #a1a1a1;
  opacity: 1;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #a1a1a1;
  opacity: 1;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #a1a1a1;
}
::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #a1a1a1;
}

::placeholder {
  /* Most modern browsers support this now. */
  color: #a1a1a1;
}

.doubleinput {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.doubleinput .singleinput {
  width: 50%;
}

@media only screen and (max-width: 1600px) {
  /* .herosection {
        background-size: 750px;
        height: 770px;

    } */

  /* .leftsection {
      width: 60%;
    } */
}

@media only screen and (max-width: 1400px) {
  .mainbody {
    padding: 60px 120px;
  }
}

@media only screen and (max-width: 1200px) {
  .mainbody {
    padding: 60px 100px;
  }

  .maincontainer {
    width: 70%;
  }
}

@media only screen and (max-width: 1100px) {
}

@media only screen and (max-width: 992px) {
  .mainbody {
    flex-direction: column;
    padding: 60px 80px;
  }
}

@media only screen and (max-width: 991px) {
  .logo {
    height: 50px;
  }

  .linkssection {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  .mainbody {
    margin-top: 81px;
  }
}

@media only screen and (max-width: 768px) {
  .mainbody {
    flex-direction: column;
    padding: 60px 50px;
  }

  .maincontainer {
    width: 100%;
    min-width: unset;
  }
  .modal-content {
    width: 100% !important;
  }
}

@media only screen and (max-width: 650px) {
  .maincontainer {
    padding: 40px 60px;
  }
}

@media only screen and (max-width: 576px) {
  .mainbody {
    flex-direction: column;
    padding: 60px 35px;
  }
}

@media only screen and (max-width: 500px) {
  .mainbody {
    flex-direction: column;
    padding: 60px 20px;
  }

  .maincontainer {
    padding: 40px 25px;
  }

  .loginlogo {
    height: 75px;
  }

  .maincontainer h3 {
    font-size: 30px;
  }

  .doubleinput {
    flex-direction: column;
    gap: 0px;
  }

  .doubleinput .singleinput {
    width: 100%;
  }
}

@media only screen and (max-width: 450px) {
}

.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
  overflow: none;
}

/* Close button style */
.close {
  color: #aaa;
  display: flex;
  justify-content: end;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

input[type="button"] {
  background-color: #8c59c8;
  border: 1px solid transparent;
  color: #fff;
  border-radius: 5px;
  padding: 10px 40px;
  font-size: 16px;
  white-space: nowrap;
  width: 100%;
}
