
body.login-page,
body.register-page,
body.reset-page {
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  display: flex;


 background-image: url('/image/arkaplan/arkaplan.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}




body.login-page .main-content,
body.register-page .main-content,
body.reset-page .main-content {
  display: flex;
  justify-content: flex-end; 
  align-items: center;
  width: 100%;
  height: 100vh; 
  padding-right: 5vw; 
}

body.login-page .login-form-container,
body.register-page .register-form-container,
body.reset-page .reset-form-container {
  width: 20vw;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  color: rgb(18, 88, 49);
  margin-top: 0; 
}

body.login-page .input-group,
body.register-page .input-group,
body.reset-page .input-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
 
  
}

body.login-page .input-group input,
body.register-page .input-group input,
body.reset-page .input-group input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: none;
  border-radius: 4px;
  margin-top: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgb(65, 64, 64);
  
}

body.login-page .login-button,
body.register-page .register-button,
body.reset-page .login-button {
 
  padding: 10px;
  border: none;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
  background-color: rgb(18, 88, 49);
  color:antiquewhite
}

body.login-page .form-footer,
body.register-page .form-footer,
body.reset-page .form-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  
  
}

body.login-page .form-footer a,
body.register-page .form-footer a,
body.reset-page .form-footer a {
  color: aliceblue;
  text-decoration: none;
  font-size: 0.9em;
}
body.login-page .logo,
body.register-page .logo,
body.reset-page .logo{
  position: fixed;
  top: 6%;
  left: 20px;
  width: 8%;
  height: auto;
  z-index: 1000;
   border-radius: 50%;
  box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.3);
      animation: heartBeat 10s  ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgb(245, 245, 245));
  }
  25% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(244, 113, 5, 0.468));
  }
  50% {
    transform: scale(0.95);
    filter: drop-shadow(0 0 6px white);
  }
  75% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px white);
  }


}
body.login-page .logo2,
body.register-page .logo2,
body.reset-page .logo2{
  position: fixed;
  top: 6%;
  right:  20px;
  width: 8%;
  height: auto;
  z-index: 1000;
  border-radius: 50%;
  box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.3);
    animation: heartBeat 10s  ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgb(246, 248, 246));
  }
  25% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(244, 113, 5, 0.468));
  }
  50% {
    transform: scale(0.95);
    filter: drop-shadow(0 0 6px white);
  }
  75% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px white);
  }

}
body.login-page .banner,
body.register-page .banner,
body.reset-page .banner {
  top: 9%;
  left: 25%;
  padding: 20px;
  padding-top: 20px;
  font-size: 3vh;
  line-height: 1.6;
  position: relative;
  text-align: center;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.0);
  border-radius: 10px;
  color: rgb(18, 88, 49);
  height: 10%;
  width: 100%;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  text-shadow:  0 0 25px white;
  
}
body.login-page .banner .cbs,
body.register-page .banner .cbs,
body.reset-page .banner .cbs {
  font-size: 2vh; 
  font-style: italic; 
}


body.login-page .modal ,
body.register-page .modal ,
body.reset-page .modal  {
  display: none;
  position: fixed;
  z-index: 999;
  left: 30%; top: 30%;
  width: 30%; height: 40%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 20%;
}
body.login-page .modal-content ,
body.register-page .modal-content ,
body.reset-page .modal-content  {
 
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  border-radius: 10px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgb(65, 64, 64);
}
body.login-page .close-btn ,
body.register-page .close-btn ,
body.reset-page .close-btn {
background-color: white;
color: brown;
float: right;
font-size: 24px;
cursor: pointer;
width: 10%;
border-radius: 50%;
}




