* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.3rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background: #000000;
}
.header #check {
  display: none;
}
.header .logo {
  font-size: 2rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-family: "Roboto", system-ui;
}
.header .icons {
  font-size: 2rem;
  right: 5%;
  color: #ffffff;
  cursor: pointer;
  display: none;
  position: absolute;
}
.header .navbar i {
  font-size: 1rem;
  color: #ffffff;
}
.header .navbar a {
  font-size: 1.15rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-family: "Roboto", system-ui;
  margin-left: 2.5rem;
}

.info {
  width: 100%;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}
.info .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}
.info .container .login-box {
  background-color: white;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}
.info .container .login-box h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  font-family: "Roboto", system-ui;
}
.info .container .login-box .input-box {
  margin-bottom: 15px;
}
.info .container .login-box .input-box label {
  font-size: 14px;
  color: #333;
}
.info .container .login-box .input-box input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}
.info .container .login-box .input-box input:focus {
  border-color: #8bc34a;
  outline: none;
}
.info .container .login-box .options {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.info .container .login-box .options .forgot-password, .info .container .login-box .options .register {
  font-size: 12px;
  color: #8bc34a;
  text-decoration: none;
  font-family: "Roboto", system-ui;
}
.info .container .login-box .options .forgot-password:hover, .info .container .login-box .options .register:hover {
  text-decoration: underline;
}
.info .container .login-box .login-btn {
  width: 100%;
  padding: 10px;
  background-color: #8bc34a;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-family: "Roboto", system-ui;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.info .container .login-box .login-btn:hover {
  background-color: #7cb342;
}

.buy {
  width: 100%;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
}
.buy .edit {
  width: 60%;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.buy .edit h1 {
  color: #ffffff;
  font-family: "Roboto", system-ui;
  font-weight: 500;
  font-size: clamp(10px, 1.5vw, 20px);
}
.buy .edit p {
  font-family: "Roboto", system-ui;
  text-align: center;
  font-weight: 400;
  color: #ffffff;
  font-size: clamp(10px, 1.5vw, 20px);
  margin-top: 8px;
}

@media (max-width: 992px) {
  .header {
    padding: 1.3rem 5%;
  }
}
@media (max-width: 880px) {
  .header #check:checked ~ .icons #menyu-icon {
    display: none;
  }
  .header #check:checked ~ .icons #close-icon {
    display: block;
  }
  .header .icons {
    display: inline-flex;
  }
  .header .icons #close-icon {
    display: none;
  }
  .header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: #000000;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    transition: 0.3s ease;
    overflow: hidden;
  }
  .header .navbar a {
    font-size: 1.1rem;
    text-align: center;
    margin: 0.8rem 1.5rem;
    transform: translateY(-50px);
    transition: 0.3s ease;
    color: #000000;
    opacity: 0;
  }
  .header #check:checked ~ .navbar {
    height: 17.7rem;
  }
  .header #check:checked ~ .navbar a {
    transform: translateY(0);
    transition-delay: calc(0.15s * var(--i));
    color: #ffffff;
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .login-box {
    padding: 20px 30px;
  }
  h2 {
    font-size: 20px;
  }
  input {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .login-box {
    padding: 15px 20px;
  }
  h2 {
    font-size: 18px;
  }
  input {
    font-size: 12px;
  }
}/*# sourceMappingURL=login.css.map */