@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
body {
  background-color: black;
}
.main {
  height: 530px;
  width: 1000px;
  border-radius: 15px;
  margin-left: 100px;
  margin-top: 20px;
  display: flex;
  background: black;
  overflow: hidden;
}
.log_img {
  height: 530px;
  width: 500px;
  border-radius: 15px;
}
.log_form {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "poppins";
  font-size: 16.5px;
  height: 530px;
  width: 500px;
  border-radius: 15px; 
  overflow: hidden;
}
.img {
  position: absolute;
  top: -120px;
  left: -130px;
  width: 490px;
  height: 520px; 
  object-fit: cover; 
  z-index: -1;
  opacity: 0.4;
}
.form1 h3 {
  position: relative;
  margin-top: -1px;
  color: black;
  text-align: center;
}
.form1 input {
  background: transparent;
  color: black;
  height: 25px;
  margin-bottom: 5px;
}
.forms .name_det label,
.forms .pass_det label
{
  position: absolute;
  padding-top: 30px;
  padding-left: 10px;   
}
.forms .name_det input {
  position: relative;
  margin-top: -10px;
}
.log_form label {
  position: relative;
  color: black;
  font-size: 14px;
  padding-bottom: 10px;
}
.forms {
  box-shadow: 0px 0px 4px 5px white;
  position: relative;
  margin-left: 10px;
  background-color: white;
  padding: 10px;
  border-radius: 15px;
  z-index: 100;
}
.links {
  position: relative;
  font-size: 13px;
  margin-top: -10px;
}
.img2 {
  border-radius: 15px;
  margin-top: 12px;
  margin-left: 7px;
  height: 510px;
  width: 455px;
  animation: glow1 1s infinite;
}
.in1, .forms, .in2{
  border: 3px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg, #ff6b6b, #f7d794, #ff9ff3, #1dd1a1, #54a0ff, #c56cf0);
}
.log_form {
  animation: glow1 1s infinite;
  margin-top: 10px;
  height: 510px;
  width: 493px;
  border: 3px solid;
  border-image-slice: 1;
  box-shadow: 0px 0px 8px 8px white;

}
.forms{
  animation: glow1 1s infinite;
  border: 7px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg, #ff6b6b, #f7d794, #ff9ff3, #1dd1a1, #54a0ff, #c56cf0);
}
@keyframes glow1 {  
  0% {
      box-shadow: 0 0 4px 4px rgb(237, 5, 5);
      border-color: transparent;
  }
  25% {
    box-shadow: 0 0 6px 6px rgb(0, 21, 255);
    border: none;
  }
  50% {
    box-shadow: 0 0 10px 8px rgb(13, 255, 0);
    border: none;
  } 
  75% {
    box-shadow: 0 0 6px 6px rgb(123, 0, 255);
    border: none;
  } 
  100% {
    box-shadow: 0 0 4px 4px rgb(251, 255, 0);
    border-color: transparent;
  }
}
.in2:hover {
  transform: scale(1.2);
}
