@font-face {
  font-family: poppins;
  src: url(../fonts/Poppins-Medium.ttf);
}
@font-face {
  font-family: Raleway;
  src: url(../fonts/Raleway-VariableFont_wght.ttf);
}
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
  box-sizing: border-box;
}

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

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

header {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.685) 90%, transparent), url("../images/ADMINISTRATION BLOCK.jpg");
  background-position: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background-size: cover;
  width: 100%;
  align-items: center;
  text-align: center;
  display: flex;
  justify-content: space-between;
  color: white;
}
header .header-logo {
  margin-left: 20px;
  position: relative;
  display: flex;
  align-items: center;
}
header .header-logo img {
  width: 80px;
}
header .header-logo h1 {
  font-size: 1em;
}
header .header-links {
  position: relative;
  margin-right: 20px;
}
header .header-links ul {
  display: flex;
  gap: 10px;
}
header .header-links ul li {
  background-color: green;
  padding: 15px;
  border-radius: 10px;
}
header .header-links ul li a {
  color: rgba(255, 251, 3, 0.918);
  font-weight: bold;
  text-transform: uppercase;
}
header .mobile-toggle {
  display: none;
}

.hero {
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 3px 2px 3px rgb(216, 215, 215);
  width: 90%;
  margin: 30px auto;
  border-left: 20px solid rgb(7, 211, 7);
  position: relative;
  line-height: 2em;
  padding: 20px;
}
.hero h2 {
  color: rgb(7, 211, 7);
  padding: 2px;
  padding-bottom: 25px;
}
.hero .main-content h3 {
  background: linear-gradient(to bottom, rgb(5, 97, 5), yellow);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  padding-bottom: 10px;
}
.hero .main-content p {
  word-break: keep-all;
  color: rgb(58, 57, 57);
}
.hero .main-content p b {
  color: black;
}
.hero .main-content .admin-btn {
  align-items: center;
  text-align: center;
}
.hero .main-content .admin-btn h5 {
  color: rgb(7, 211, 7);
  text-transform: uppercase;
}
.hero .main-content .admin-btn button {
  padding: 10px;
  color: rgb(7, 211, 7);
  background-color: yellow;
  font-weight: bold;
  border: none;
  box-shadow: 2px 3px 2px rgb(177, 177, 177);
  font-size: 1.5rem;
  font-weight: bold;
  font-family: raleway;
  border-radius: 5px;
}

marquee {
  color: green;
  font-size: 1.2em;
}

footer {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.685) 90%, transparent), url("../images/SCHOOL ENTRANCE.jpg");
  background-size: cover;
  background-position: center;
  height: 30vh;
  display: flex;
  color: gold;
  text-align: center;
  align-items: center;
  line-height: 2em;
}
footer .left {
  width: 50%;
  left: 0;
}
footer .left h3 {
  text-decoration: underline;
  margin-bottom: 20px;
}
footer .left svg {
  color: rgb(7, 211, 7);
}
footer .right {
  width: 50%;
  right: 0;
}
footer .right h3 {
  text-decoration: underline;
  margin-bottom: 10px;
}
footer .right svg {
  color: rgb(223, 146, 3);
}
footer .right svg:nth-child(4) {
  color: rgb(0, 183, 255);
}

.mobile-menu {
  height: 20vh;
  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: 20%;
  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: yellow;
  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, 211, 7);
}

.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, 211, 7);
}

@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: 85vh;
  margin: 40px auto;
  width: 70%;
  background-color: white;
  box-shadow: 2px 3px 2px rgb(230, 230, 230);
  border-radius: 20px;
  align-items: center;
  display: flex;
  gap: 20px;
}
.container .left {
  width: 25%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.438) 90%, transparent), url("../images/SCHOOL ENTRANCE.jpg");
  left: 0;
  background-position: center;
  background-size: cover;
}
.container .left img {
  width: 60px;
}
.container .right {
  width: 65%;
  right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.container .right h1 {
  margin: 2px 10px;
  text-align: left;
  color: rgb(7, 211, 7);
}
.container .right a {
  color: rgb(255, 255, 255);
  background-color: rgb(7, 211, 7);
  padding: 10px;
  width: 80px;
  border-radius: 3px;
}
.container .right form h2 {
  color: rgb(7, 211, 7);
}
.container .right form .form-main {
  padding: 25px;
  padding-bottom: 20px;
  display: flex;
  margin: 10px;
  flex-direction: column;
  gap: 20px;
  width: 90%;
  border-radius: 20px;
  box-shadow: 2px 3px 4px 5px rgb(218, 216, 216);
}
.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;
  border-left: 10px solid rgb(7, 211, 7);
  font-family: poppins;
  color: black;
  outline: none;
}
.container .right form .form-main input::-moz-placeholder {
  color: goldenrod;
}
.container .right form .form-main input::placeholder {
  color: goldenrod;
}
.container .right form .form-main input[type=submit] {
  background-color: rgb(7, 211, 7);
  color: rgb(255, 238, 0);
  width: 50%;
  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: 10px auto;
    height: 90vh;
    width: 90%;
  }
  .container h1 {
    font-size: 1.2rem;
  }
  .container .left {
    width: 100%;
  }
  .container .right {
    width: 90%;
    padding: 10px;
  }
}/*# sourceMappingURL=login.css.map */