* {
  padding: 0;
  margin: 0;
}
body {
  background: black;
}
.first_section {
  overflow: hidden;
  height: auto;
  min-height: 100vh;
}
.rotating-img {
  width: 49%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 20px;
  z-index: -1;
  overflow: hidden;
}
.rotating-img img {
  width: 100%;
  animation: spin 30s linear infinite;
}

.log-form {
  width: 55%;
  height: 100vh;
  background: rgba(49, 49, 49, 0.78);
  box-shadow: -31px 4px 25px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(10px);
  z-index: 1;
  float: right;
}
.form-data {
  padding-top: 80px;
  height: auto;
  min-height: 100vh;
}
.logo-div {
  width: fit-content;
  margin: auto;
}
.input-div {
  width: 50%;
  margin: auto;
}

.input-div h1 {
  color: #ffffff;
  text-align: center;
  padding-top: 45px;
}
.inputs {
  padding-top: 70px;
}
form {
  color: #ffffff;
}
.form-control {
  background: #1c1c1c;
  border-radius: 6px;
  border: none;
  width: 100%;
  color: #d6f200;
  padding: 15px 13px 15px 10px
}
label {
  font-size: 18px;
  font-weight: 600;
}
.form-control::placeholder {
  color: #ffffff;
  opacity: 0.3;
}
.form-control:focus {
  background: #1c1c1c;
}
.log-btn {
  text-decoration: none;
  background: #ebac51;
  border-radius: 34px;
  color: #1c1c1c;
  font-weight: 500;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  width: 23%;
  justify-content: center;
  margin: auto;
}


@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


@media (max-width:1299px){ 
  .rotating-img {
    width: 63%;
  }
  .log-form {
    width: 75%;
  }
  
}


@media (max-width:991px){
  .rotating-img {
    width: 84%;
    left: 5px;
  }
  .log-form {
    width: 100%;
  }
}

@media (max-width:768px){
  .rotating-img {
    width: 100%;
    left: 0px;
  }
  .input-div {
    width: 85%;
  }
  .form-data {
    padding-top: 160px;
  }
}

@media (max-width:576px){
.rotating-img {
  top: -120px;
}
}
@media (max-width:415px){

  .inputs {
    padding-top: 35px;
  }
}
