*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins",sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(../../static/images/image.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.wrapper{
    width: 420px;
    background: transparent;
    border: 2px solid rgba(255,255,255, .2);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 12px;
    padding: 30px 40px;
    
}
.wrapper h1{
    font-size: 36px;
    text-align: center;
}
.wrapper .input-box{
    position: relative;
    width: 100%;
    height: 50px;
    
    margin: 30px 0;
}
.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255,255,255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}
.input-box input::placeholder{
    color: #fff;
}
.input-box i{
    position: absolute;
    right: 20px;
    top: 30%;
    transform: translate(-50%);
    font-size: 20px;
}
.wrapper .remember-forgot{
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}
.remember-forgot label input{
    accent-color: #fff;
    margin-right: 3px;
}
.remember-forgot a{
    color: #fff;
    text-decoration: none;

}
.remember-forgot a:hover{
    text-decoration: underline;
}
.wrapper .btn{
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0,0,0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}
.wrapper .register-link{
    font-size: 14,5px;
    text-align: center;
    margin: 20px 0 15px;
}
.register-link p a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.register-link p a:hover{
    text-decoration: underline;
}


/* navbar css  */

.agu-display {
    font-family: "Agu Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "MORF" 0;
  }

  /* Navbar Styling */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 30px;
    background: rgba(18, 17, 78, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  .navbar .logo img {
    height: 60px;
    width: auto;
    border-radius: 28px;
    padding: 1px 2px;
    animation: logoPulse 3s infinite ease-in-out;
    background: linear-gradient(45deg, #1e90ff, #ff6347); /* Gradient background */
    border: 2px solid transparent; /* Invisible border for hover effect */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 15px rgba(10, 57, 102, 0.4);
   transition: transform 0.4s ease, box-shadow 0.3s ease, border-color 0.3s ease;

  }
  @keyframes logoPulse {
    0% {
      transform: translateY(0) scale(1);
      box-shadow: 0 0 10px rgba(10, 57, 102, 0.5);
      border-color: rgb(243, 243, 248);
    }
    25% {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 0 20px rgba(10, 57, 102, 0.7);
      border-color: rgba(10, 57, 102, 0.8);
    }
    50% {
      transform: translateY(0) scale(1);
      box-shadow: 0 0 15px rgba(10, 57, 102, 0.6);
      border-color: rgb(243, 243, 248);
    }
    75% {
      transform: translateY(5px) scale(0.95);
      box-shadow: 0 0 12px rgba(10, 57, 102, 0.4);
      border-color: rgba(243, 243, 248, 0.6);
    }
    100% {
      transform: translateY(0) scale(1);
      box-shadow: 0 0 10px rgba(10, 57, 102, 0.5);
      border-color: rgb(243, 243, 248);
    }
  }


  .navbar .slogan h1 {
    margin: 0;
    font-size: 1.8rem;
    color: #fff;
    /* border: 1px solid rgb(122, 34, 34); */
    border-radius: 50px;
    padding: 15px 50px;
    text-shadow: 1px 1px 3px rgba(148, 47, 47, 0.7);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  }

  /* Adjustments for body to fit navbar */
  body {
    padding-top: 80px; /* Adjust padding to avoid overlap with navbar */
  }