/* GLOBAL */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
}

/* BACKGROUND */

.login-page {
  width: 100%;
  height: 100vh;

  overflow: hidden;

  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;

  justify-content: flex-start;

  padding-top: 70px;

  background: linear-gradient(135deg, #ff7a00, #ff4b00);
}

/* WAVE */

.login-page::after {
  content: "";

  position: absolute;

  bottom: -280px;

  left: -10%;

  width: 120%;

  height: 420px;

  background: rgba(255, 255, 255, 0.15);

  border-radius: 50%;

  z-index: 0;
}

/* LOGO */

.logo {
  width: 100%;

  display: flex;

  flex-direction: column;

  align-items: center;

  position: relative;

  z-index: 2;
}

.logo img {
  width: 170px !important;

  height: 170px !important;

  object-fit: contain;

  display: block;

  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.9));

  margin-bottom: -10px;
}

.logo h1 {
  margin: 15px 0 0;

  color: white !important;

  font-size: 48px !important;

  font-weight: 800;

  letter-spacing: 1px;

  text-align: center;
}

/* LOGIN */

.login-box {
  margin-top: 45px;

  position: relative;

  z-index: 3;

  display: flex;

  flex-direction: column;

  align-items: center;
}

/* INPUT */

.input-box {
  width: 540px;

  height: 75px;

  background: white;

  border-radius: 50px;

  display: flex;

  align-items: center;

  padding: 0 30px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.input-box i {
  font-size: 24px;

  color: #555;

  cursor: pointer;
}

.input-box i:first-child {
  margin-right: 15px;
}

.input-box i:last-child {
  margin-left: 15px;
}

.input-box input {
  flex: 1;

  border: none;

  outline: none;

  font-size: 20px;

  margin: 0 10px;
}

/* BUTTON */

.login-box button {
  margin-top: 40px;

  width: 220px;

  height: 65px;

  border: none;

  border-radius: 50px;

  background: linear-gradient(135deg, #ff9800, #ff3d00);

  color: white;

  font-size: 22px;

  font-weight: 800;

  cursor: pointer;

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.login-box button:hover {
  transform: translateY(-5px);
}

/* NOTIFICATION */

.notification {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.45);

  display: none;

  align-items: center;

  justify-content: center;

  z-index: 99;
}

.notif-box {
  width: 350px;

  background: white;

  border-radius: 25px;

  padding: 35px;

  text-align: center;
}

.notif-box h2 {
  color: #ff5500;
}

/* BUTTON NOTIFICATION */

.notif-box button {
  margin-top: 25px;

  width: 170px;

  height: 50px;

  border: none;

  border-radius: 50px;

  background: linear-gradient(135deg, #ff9800, #ff4500);

  color: white;

  font-size: 17px;

  font-weight: 700;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(255, 85, 0, 0.35);

  transition: 0.3s ease;
}


.notif-box button:hover {

  transform: translateY(-4px);

  box-shadow: 0 15px 30px rgba(255, 85, 0, 0.5);

}


.notif-box button:active {

  transform: scale(0.95);

}
/* =====================
   MOBILE RESPONSIVE
===================== */

@media screen and (max-width: 600px) {
  .login-page {
    justify-content: center;

    padding-top: 0;
  }

  .logo {
    margin-top: -60px;
  }

  .logo img {
    width: 120px !important;

    height: 120px !important;
  }

  .logo h1 {
    font-size: 30px !important;

    margin-top: 15px;

    letter-spacing: 0;
  }

  .login-box {
    width: 100%;

    margin-top: 40px;
  }

  .input-box {
    width: 85%;

    height: 65px;

    padding: 0 25px;
  }

  .input-box i {
    font-size: 22px;
  }

  .input-box i:first-child {
    margin-right: 10px;
  }

  .input-box i:last-child {
    margin-left: 10px;
  }

  .input-box input {
    font-size: 18px;

    margin: 0 10px;
  }

  .login-box button {
    width: 180px;

    height: 60px;

    font-size: 20px;

    margin-top: 35px;
  }
}
