* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: Lato, sans-serif;
}

/* login */
/* navbar */
.navbar-login {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 7%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.logo-login {
  height: 60px;
}
.navbar-login a {
  text-decoration: none;
}

/* form login */
.hero-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url(assets/bglogin.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-login::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
}
.hero-login .content {
  padding: 1.4rem 7%;
  max-width: 60rem;
}
.hero-login .content h1 {
  font-size: 5em;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
}
.hero-login .content h1 span {
  font-weight: 700;
}
.hero-login .content p {
  font-size: 1.6rem;
  margin-top: 1rem;
  line-height: 1.4;
  font-weight: 300;
  color: #fff;
}
.hero-login .content .cta {
  margin-top: 1rem;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  background-color: maroon;
  border-radius: 0.5rem;
  border: 3px solid white;
  text-decoration: none;
}
.login-container {
  position: relative;
  width: 440px;
}
.reg-container {
  position: relative;
  width: 440px;
}

.login-container h2 {
  color: #fff;
  text-align: center;
  font-size: 2em;
}
.reg-container h2 {
  color: #fff;
  text-align: center;
  font-size: 2em;
  padding: 20px;
}

.input-group {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 40px 10px;
}
.reg-input-group {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 15px 10px;
}

.input-group input,
.reg-input-group input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 1px solid white;
  outline: none;
  border-radius: 5px;
  font-size: 1em;
  color: white;
  padding: 0 25px 0 45px;
}
.input-group label,
.reg-input-group label {
  position: absolute;
  font-size: 1em;
  color: white;
  pointer-events: none;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  transition: 0.5s;
}
.input-group input:focus ~ label,
.input-group input:valid ~ label,
.reg-input-group input:focus ~ label,
.reg-input-group input:valid ~ label {
  font-size: 0.8em;
  top: -14px;
  left: 17px;
}
.remember-forgot {
  font-size: 0.9em;
  color: white;
  font-weight: 500;
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
}
.remember-forgot a {
  color: white;
  text-decoration: none;
}
.remember-forgot a:hover {
  text-decoration: underline;
}
.remember-forgot label input {
  accent-color: maroon;
  margin-right: 3px;
  position: relative;
  z-index: 10;
}
.login-container .btn,
.reg-container .btn {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  border-radius: 5px;
  background: white;
  color: red;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 10;
}
.login-container .register-link,
.reg-container .login-link {
  font-size: 0.9em;
  color: white;
  text-align: center;
  margin: 30px 0;
}
.register-link p a,
.login-link p a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.register-link p a:hover,
.login-link p a:hover {
  text-decoration: underline;
}
@media (max-width: 750px) {
  .hero-login {
    flex-wrap: wrap;
    padding: 10px 20px;
  }
  .login-container,
  .reg-container {
    margin: 0 20px;
    position: relative;
    z-index: 10;
  }
  .hero-login .content h1 {
    font-size: 3em;
  }
  .hero-login .content .cta {
    padding: 0.5rem 1.3rem;
  }
  .hero-login {
    padding-top: 4rem;
  }
}
/* form login end */

/* .container {
  width: 80%;
  margin-inline: auto;
} */

/* navbar */
.navbar {
  padding: 20px 0;
  background-color: maroon;
  color: white;
}
.logo {
  height: 50px;
}
.navbar .container {
  width: 80%;
  margin-inline: auto;
}
.nav-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-box .menu {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-box .menu li {
  list-style-type: none;
}
.nav-box .menu li a {
  text-decoration: none;
  font-size: 1.3rem;
  color: white;
}
.nav-box .menu li a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .nav-box {
    flex-direction: column;
    gap: 20px;
  }
  .nav-box .menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* navbar end */
/* hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url(assets/koran.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(1, 1, 3, 1) 8%,
    rgba(255, 255, 255, 0) 25%
  );
}
.logo-hero {
  max-width: 60rem;
}
.hero .content {
  padding: 1.4rem 7%;
  max-width: 60rem;
}
.hero .content img {
  width: 50%;
  height: 100%;
}
@media (max-width: 450px) {
  .hero .content img {
    width: 80%;
  }
}
.hero .content h1 {
  font-size: 5em;
  color: #fff;
  line-height: 1.1;
}

.hero .content p {
  font-size: 1.6rem;
  margin-top: 1rem;
  line-height: 1.4;
  font-weight: 300;
  color: #fff;
}
.hero .content .cta {
  margin-top: 1rem;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  color: #fff;
  background-color: maroon;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
  text-decoration: none;
  cursor: pointer;
}
.hero .content .cta:hover {
  background-color: rgb(255, 5, 5);
  cursor: pointer;
}
@media (max-width: 575px) {
  .content p {
    width: 100%;
  }
}
@media (max-width: 475px) {
  .content h1 {
    font-size: 30px;
  }
  .content p {
    font-size: 14px;
  }
}
/* hero end */

/* video highlight */
.highlight {
  padding: 50px 0 50px 0;
}
.highlight .box-highlight {
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.highlight .box-highlight .box {
  text-align: center;
  transition: all 0.3s ease;
}
.highlight .box-highlight .box:hover {
  transform: translateY(-20px);
}
.highlight .box-highlight .box video {
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
  border-radius: 5px;
}
.highlight .box-highlight .box h3 {
  color: white;
}
.highlight .box-highlight .box p {
  font-weight: 100;
  margin-bottom: 10px;
  color: white;
  font-size: medium;
  font-weight: 300;
}
.highlight .box-highlight .box p span {
  font-style: italic;
}
.highlight .box-highlight .box button {
  width: 120px;
  height: 40px;
  border: none;
  background-color: maroon;
  color: white;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
}
.highlight .box-highlight .box button:hover {
  background-color: rgb(243, 0, 0);
}
@media screen and (max-width: 370px) {
  .highlight .box-highlight .box:nth-child(2) {
    width: 55vw;
    align-self: flex-end;
    justify-self: center;
  }
  .highlight .box-highlight {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .box-desc {
    width: 90%;
    inline-size: auto;
  }
}
.highlight .box-desc {
  text-align: center;
}
.highlight .box-desc h1 {
  color: white;
  font-size: 3rem 7%;
  font-weight: 700;
  padding-top: 30px;
  padding-bottom: 10px;
}
.highlight .box-desc h1 span {
  color: red;
}
.highlight .box-desc p {
  line-height: 2;
  text-align: justify;
  color: #fff;
  font-size: 1.5rem 7%;
  padding: 0 20px;
}
.highlight {
  background-image: url(assets/BGLatestIssue.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.highlight::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(1, 1, 3, 1) 8%,
    rgba(255, 255, 255, 0) 25%
  );
}
/* video highlight end */

/* footer */
footer {
  /* margin-top: 100px; */
  padding: 30px;
  width: 100%;
  background-color: maroon;
  color: white;
}
.footer-container {
  width: 90%;
  margin-inline: auto;
}
.footer-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-box h2 {
  margin-bottom: 20px;
}
.footer-box p {
  line-height: 2;
  font-size: 14px;
}
.footer-box .box:nth-child(1) {
  width: 400px;
}
.footer-box .social {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-box .social a {
  font-size: 28px;
  text-decoration: none;
  color: white;
}
.footer-box .social a:hover {
  color: blue;
}

.footer-box .box:nth-child(2) {
  width: 150px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-box .box:nth-child(2) h2 {
  margin-bottom: 0;
}
.footer-box .box:nth-child(2) a {
  text-decoration: none;
  font-size: 14px;
  color: white;
}
.footer-box .box:nth-child(2) a:hover {
  color: blue;
}
.footer-box .box:nth-child(3) {
  width: 300px;
}
.footer-box .box:nth-child(3) p {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.copyright {
  margin-top: 50px;
  border-top: 1px solid white;
  text-align: center;
}
.copyright p {
  margin-top: 20px;
  font-size: 14px;
}
.copyright p span {
  font-weight: bold;
}
/* footer end */

/* About us */
.about {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  text-align: center;
  background-image: url(assets/BGAboutUs.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.about::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(1, 1, 3, 1) 8%,
    rgba(255, 255, 255, 0) 25%
  );
}
.container {
  width: 80%;
  margin-inline: auto;
}
.about-box .box h1 {
  margin: 30px 0;
  font-size: 2.6rem 7%;
  font-weight: 700;
  color: #fff;
}
.about-box .box p {
  line-height: 2;
  text-align: justify;
  color: #fff;
  font-size: large;
  font-weight: 300;
}
@media (max-width: 450px) {
  .about-box .box p {
    font-size: medium;
  }
}
/* About us end */

/* Editorial board */
.editorial {
  padding: 50px 0 50px 0;
}
.editorial .box-editorial {
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.editorial .box-editorial .box {
  text-align: start;
  transition: all 0.3s ease;
}
.editorial .box-editorial .box:hover {
  transform: translateY(-20px);
}
.editorial .box-editorial .box img {
  width: 100%;
  height: 250px;
  margin-bottom: 10px;
  border-radius: 5px;
}
.editorial .box-editorial .box h3 {
  color: black;
}
.editorial .box-editorial .box p {
  font-weight: 300;
  margin-bottom: 10px;
  color: black;
  font-size: medium;
}

@media screen and (max-width: 370px) {
  .editorial .box-editorial .box:nth-child(2) {
    width: 55vw;
    align-self: flex-end;
    justify-self: center;
  }
  .editorial .box-editorial {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.editorial .box-desc {
  text-align: center;
}
.editorial .box-desc h1 {
  color: black;
  font-size: 3rem 7%;
  font-weight: 700;
  padding-top: 30px;
  padding-bottom: 10px;
}
.editorial .box-desc h1 span {
  color: red;
}
.editorial .box-desc p {
  line-height: 2;
  text-align: justify;
  color: black;
  font-size: 1.5rem 7%;
  padding: 0 20px;
}

/* Editorial board end */

/* Literary */
.literary {
  padding: 20px 10%;
  justify-content: center;
  text-align: center;
  background-image: url(assets/BGLiterary.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.literary-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
  padding-top: 50px;
  gap: 20px;
}
/* .literary-container {
  width: 80%;
  inline-size: auto;
} */
.literary-box img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.literary-box h1 {
  font-size: 40px;
  margin-bottom: 10px;
  color: white;
  background-color: maroon;
  border-radius: 5px;
}
.literary-box p {
  line-height: 2;
  color: white;
  text-align: justify;
}
.literary .literary-desc {
  text-align: center;
}
.literary .literary-desc h1 {
  color: white;
  font-size: 3rem 7%;
  font-weight: 700;
  padding-top: 30px;
  padding-bottom: 10px;
}
.literary .literary-desc p {
  line-height: 2;
  text-align: justify;
  color: #fff;
  font-size: 1.5rem 7%;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .literary-box {
    grid-template-columns: 1fr;
  }
}
/* Literary end */

/* articles */
.latest-issues {
  padding: 50px 20px 50px 20px;
}
.latest-issues-desc h1 {
  text-align: center;
  font-size: 3rem 7%;
  font-weight: 700;
  color: maroon;
  padding-bottom: 1rem;
}
.latest-issues-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.latest-issues-box img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.latest-issues-box .box {
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.latest-issues-box .desc {
  padding: 20px;
}
.latest-issues-box .desc h2 {
  background-color: maroon;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  text-align: center;
}
.latest-issues-box .desc p {
  line-height: 2;
}
@media (max-width: 575px) {
  .latest-issues-box {
    gap: 20px;
  }
}
/* articles end */
