* {
  padding: 0;
  margin: 0;
}
body {
  background: black;
}
.first_section {
  overflow: hidden;
  height: auto;
  min-height: 100vh;
}
.rotating-img {
  width: 49%;
  
  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: 67%;
  height: 100%;
  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: 66%;
  margin: auto;
}

.input-div h1 {
  color: #ffffff;
  text-align: center;
  padding-top: 35px;
  font-weight: 700;
}
.inputs {
  padding-top: 38px;
}
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: 18%;
  justify-content: center;
  margin: auto;
  font-weight: 700;
}
.forget-pass {
  text-align: center;
  padding-top: 15px
}
.forget-pass p {
  color: #ffffff;
}

.dropdown {
  height: 52px;
  background-color: #1c1c1c;

}
.dropdown-toggle {
  margin-top: 3px;
}
#img {
  width: 30px;
}
.phon-input {
  padding: 7px 13px 7px 10px;
  border-left: 2px solid #ffffff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-top: 6px;
}
.dropdown-item span img {
  width: 40px;
}
.mobile-drop {
  display: flex;
  height: 52px;
  background-color: #1c1c1c;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width:1299px){ 
  .rotating-img {
    width: 62%;
  }
  .log-form {
    width: 75%;
  }
  .log-btn {
    width: 28%;
  }

  
}

@media (max-width:991px){
  .rotating-img {
    width: 84%;
    left: 73px;
  }
  .log-form {
    width: 100%;
  }
  .form-data {
    padding-top: 255px;
  }
}
@media (max-width:768px){
  .rotating-img {
    width: 100%;
    left: 0px;
  }
  .input-div {
    width: 85%;
  }
  .form-data {
    padding-top: 140px;
  }
}
@media (max-width:576px){
.rotating-img {
  top: -120px;
}
.log-btn {
  width: 40%;
}

.form-data {
  padding-top: 52px;
}
}
@media (max-width:415px){
  .rotating-img {
    top: 100px;
}
  .inputs {
    padding-top: 35px;
  }
}
@media (max-width:300px){
  .log-btn {
    width: 58%;
}
}
