/* ===================================================
   GLOBAL RESET
=================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-drag: none;
  scrollbar-width: none;
}

/* ===================================================
   BODY BACKGROUND (SOFT DARK WITH LIGHT GRADIENT)
=================================================== */
body {
  background: #050505;
  background-image: linear-gradient(
    120deg,
    #0d0d0d,
    #0a0f12,
    #050a0f
  );
  background-size: 100%;
  color: #e9feff;
}

/* ===================================================
   HEADINGS
=================================================== */
h3 {
  color: #00eaff;
  text-shadow: 0px 0px 10px rgba(0, 255, 255, 0.6);
}

/* Remove arrow from number input */
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* ===================================================
   DARK GLASS PANELS (PHOTO STYLE)
=================================================== */
#loginDiv,
#singupDiv,
#forgotDiv,
#ChangePasswordDiv {
  width: 60%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid #00eaff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
  padding-bottom: 20px;
}

#singupDiv {
  height: 85%;
  overflow-y: scroll;
}

#forgotDiv {
  height: 50%;
}

#ChangePasswordDiv {
  height: auto;
}

/* ===================================================
   RIGHT SIDE IMAGE PANEL
=================================================== */
.my_img_div {
  width: 50%;
  height: 100dvh;
  background: linear-gradient(130deg, #061ce1, #00eaff, #00f7ff);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 99;
  transition:all 0.4s ease ;
}

.my_img_div_inner {
  width: 100%;
  height: 100%;
  background-color: #00000070;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my_img_circle {
  width: 30vw;
  height: 30vw;
  background: #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: 0.6s;
  box-shadow: 0px 0px 25px rgba(0, 255, 255, 0.6);
}

.my_img_circle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  border-radius: 50%;
  filter: blur(2px);
}

.my_img_circle::before {
  content: "";
  position: absolute;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  top: -15px;
  left: -15px;
  background: linear-gradient(120deg, #00eaff, #00c4ff, #00f7ff);
  border-radius: 50%;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.my_img_circle img {
  width: 70%;
  filter: drop-shadow(0px 0px 2px cyan);
  z-index: 1;
}

.left {
  right: 768px;
}

.left .my_img_circle {
  transform: rotateZ(360deg);
}

/* ===================================================
   NAVIGATION LINKS
=================================================== */
#login,
#singUp,
#loginPage {
  color: #2651ff;
  cursor: pointer;
  text-decoration: underline;
  transition: 0.3s;
}

#login:hover,
#singUp:hover,
#loginPage:hover {
  color: #8bf9ff;
}

#fgt_pass {
  color: #2651ff;
}

#fgt_pass:hover {
  color: #8bf9ff;
}

/* ===================================================
   INPUT FIELDS — NEON CYAN
=================================================== */
.form-control-my {
  width: 100%;
  margin: 20px 0 40px;
  position: relative;
}

.form-control-my input {
  width: 100%;
  padding: 10px 10px;
  border: 0;
  border-bottom: 2px solid #008ba1;
  background: transparent;
  color: #00eaff;
  font-size: 17px;
  outline: none;
  transition: 0.3s;
}

.form-control-my input:focus,
.form-control-my input:valid {
  border-bottom-color: #00eaff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.form-control-my label {
  position: absolute;
  top: 15px;
  left: 0;
  pointer-events: none;
}

.form-control-my label span {
  display: inline-block;
  font-size: 18px;
  color: #6fdaf1;
  transition: 0.3s;
}

.form-control-my input:focus + label span,
.form-control-my input:valid + label span {
  transform: translateY(-28px);
  color: #00eaff;
}

/* ===================================================
   BUTTONS — CYAN NEON
=================================================== */
.my_btn_login,
.my_btn_singup,
.my_btn_send_link {
  width: 140px;
  height: 45px;
  background: #00eaff;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  position: relative;
  transition: 0.3s;
}

.my_btn_login:hover,
.my_btn_singup:hover,
.my_btn_send_link:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.9);
}

.my_btn_login i,
.my_btn_singup i,
.my_btn_send_link i {
  position: absolute;
  left: -30px;
  transition: 0.4s;
  font-weight: bold;
  transform: scale(0);
}

.my_btn_login span,
.my_btn_singup span,
.my_btn_send_link span {
  position: absolute;
  left: 45px;
  transition: 0.3s;
}

.my_btn_login:hover i,
.my_btn_singup:hover i,
.my_btn_send_link:hover i {
  left: 30px;
  transform: scale(1.3);
}

.my_btn_login:hover span,
.my_btn_singup:hover span,
.my_btn_send_link:hover span {
  left: 60px;
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 768px) {
  .my_img_div {
    display: none;
  }

  #loginDiv,
  #singupDiv,
  #forgotDiv {
    width: 100%;
  }

  #singupDiv {
    margin-top: 250px;
  }

  #loginDiv {
    margin-top: 80px;
  }

  #forgotDiv {
    height: 50%;
  }
}
