* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
  line-height: 1.8em;
  box-sizing: border-box;
}

body {
  font-family: poppins;
  color: rgb(0, 0, 0);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Montserrat;
}

header {
  background-color: rgb(213, 230, 245);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .header-logo h1 {
  font-size: 1.5rem;
}
header .header-logo img {
  width: 50px;
}
header nav {
  align-items: center;
}
header nav ul {
  display: flex;
}
header nav ul li {
  padding: 20px;
}
header nav ul li a {
  color: rgb(13, 11, 22);
}
header .mobile-toggle {
  display: none;
}
header .mobile-toggle i, header .mobile-toggle svg {
  color: rgb(8, 8, 150);
}

.mobile-menu {
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.651);
  position: fixed;
  z-index: 199;
  top: 0;
  display: none;
}
.mobile-menu .mobile-active {
  width: 80%;
  align-items: center;
  text-align: left;
  height: 100%;
  position: relative;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.mobile-menu .mobile-active .header-logo {
  margin-top: 40px;
  align-items: center;
  text-align: center;
}
.mobile-menu .mobile-active .header-logo img {
  width: 40px;
}
.mobile-menu .mobile-active .header-links {
  margin-top: 70px;
  position: relative;
}
.mobile-menu .mobile-active .header-links ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu .mobile-active .header-links ul li {
  padding: 20px;
  background-color: rgb(224, 224, 194);
  border-radius: 12px;
}
.mobile-menu .mobile-active .header-links ul li a {
  display: flex;
  color: black;
  gap: 20px;
  align-items: center;
}
.mobile-menu .mobile-active .header-links ul li a svg {
  color: rgb(7, 102, 211);
}

.mobile-menu.active {
  display: flex;
  animation: scrollIn 0.5s;
}

.icons {
  display: flex;
  flex-direction: column;
  right: 15px;
  gap: 20px;
  position: absolute;
  top: 30%;
}
.icons svg {
  color: rgb(7, 102, 211);
}

.hero {
  width: 100%;
  height: 90vh;
  background: linear-gradient(to bottom, rgba(4, 4, 85, 0.637), rgba(3, 3, 68, 0.637)), url("../images/ADMINISTRATION BLOCK.jpg") no-repeat center;
  background-size: cover;
  color: rgb(226, 226, 231);
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero h2 {
  padding: 20px;
  text-align: left;
  align-items: start;
}
.hero h2 hr {
  width: 250px;
  border: 1px solid rgb(22, 133, 177);
}
.hero .main-content {
  width: 90%;
  margin: 50px auto;
  text-align: left;
}
.hero .main-content b {
  color: rgb(8, 173, 238);
}
.hero .admin-btn {
  margin: 20px auto;
  width: 80%;
  text-align: center;
  align-items: center;
}
.hero .admin-btn a {
  color: white;
}
.hero .admin-btn a button {
  background: linear-gradient(to right, rgb(6, 17, 116), rgb(4, 56, 116));
  font-family: Montserrat;
  color: white;
  border-radius: 10px;
  border: none;
  box-shadow: 2px 2px 3px black;
  padding: 10px;
}

footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  align-items: center;
  padding: 10px;
  color: rgb(9, 1, 31);
}
footer .left {
  display: flex;
}

@keyframes scrollIn {
  from {
    transform: translateX(-200px);
  }
  to {
    transform: translateX(0);
  }
}
@media screen and (max-width: 800px) {
  body {
    font-size: 14px;
    overflow-x: hidden;
  }
  header {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  header .header-logo img {
    width: 60px;
  }
  header .header-links ul {
    display: none;
  }
  header .header-logo h1 {
    display: none;
  }
  header .mobile-toggle {
    margin-right: 10px;
    display: block;
    position: relative;
  }
  .icons {
    position: relative;
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    width: 200px;
    padding: 20px;
  }
}
.container {
  height: 100vh;
  width: 100%;
  background: linear-gradient(to bottom, rgba(4, 4, 85, 0.637), rgba(3, 3, 68, 0.637)), url("../images/labs.jpg") no-repeat center;
  background-size: cover;
  box-shadow: 2px 3px 2px rgb(230, 230, 230);
  align-items: center;
  display: flex;
  gap: 20px;
}
.container .right {
  background-color: rgb(255, 255, 255);
  width: 30%;
  padding: 10px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.container .right img {
  text-align: center;
  margin: 0 auto;
}
.container .right h1 {
  text-align: left;
  color: rgb(7, 102, 211);
  font-size: 1.5rem;
}
.container .right a {
  color: rgb(255, 255, 255);
  background-color: rgb(7, 102, 211);
  padding: 4px;
  width: 120px;
  text-align: center;
  border-radius: 3px;
}
.container .right form {
  padding: 10px;
}
.container .right form h2 {
  color: rgb(7, 102, 211);
}
.container .right form .form-main {
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  border-radius: 20px;
}
.container .right form .form-main .submit {
  display: flex;
  gap: 40px;
}
.container .right form .form-main input {
  padding: 8px;
  border: none;
  border-radius: 3px;
  width: 100%;
  box-shadow: 2px 3px 4px rgb(173, 173, 173);
  border: 1px solid silver;
  font-family: poppins;
  color: black;
  outline: none;
  border: 1px solid rgb(179, 179, 248);
}
.container .right form .form-main input::-moz-placeholder {
  color: rgb(34, 32, 26);
}
.container .right form .form-main input::placeholder {
  color: rgb(34, 32, 26);
}
.container .right form .form-main input[type=submit] {
  background-color: rgb(7, 102, 211);
  color: rgb(255, 255, 249);
  width: 40%;
  text-transform: uppercase;
}
.container .right form .form-main p {
  color: rgb(0, 0, 0);
  -webkit-text-emphasis: inherit;
          text-emphasis: inherit;
  font-style: italic;
}

@media screen and (max-width: 1000px) {
  body {
    font-size: 12px;
  }
  .container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .container h1 {
    font-size: 1.2rem;
  }
  .container .right {
    margin: 120px auto;
    width: 90%;
    padding: 10px;
  }
}/*# sourceMappingURL=login.css.map */