.login-section {
  width: 100%;
  
}

.login-image {
  position: relative;
  overflow: hidden;
}

.login-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 250px!important;
}

.image-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;


  display: flex;
  align-items: flex-end;
  padding: 70px;
}

.overlay-content {
  max-width: 500px;
  color: #fff;
}

.overlay-content span {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(12px);

  margin-bottom: 25px;
  font-weight: 600;
}

.overlay-content h4 {
  font-size: 30px;
  letter-spacing: 3%;
}

.overlay-content p {
  font-size: 16px;
  letter-spacing: 3%;
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 40px;
  background: #fff;
}

.login-card {
  width: 100%;
  max-width: 460px;
}

.logo {
  height: 60px;
  margin-bottom: 35px;
}

.login-card h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #2d0000;
}

.login-card p {
  color: #777;
  margin-bottom: 30px;
}

.login-card label {
  letter-spacing: 1.1px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-control {
  height: 50px;
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: none;
}

.form-control:focus {
  border-color: #f00052;
  box-shadow: none;
}

.login-btn {
  height: 58px!important;
  border: none!important;
  border-radius: 15px;
  font-size: 18px!important;
  font-weight: 600!important;

  background: linear-gradient(90deg, #f00052, #ffc23d);

  color: #fff!important;

  transition: 0.3s;
}

.login-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 12px 25px rgba(240, 0, 82, 0.3);

  color: #fff;
}

.login-footer {
  margin-top: 30px;
  text-align: center;
  font-size: 15px;
}

.login-footer a {
  color: #f00052;
  font-weight: 600;
  text-decoration: none;
}

.form-check-input:checked {
  background: #f00052;
  border-color: #f00052;
}



/* Signup Page */

.login-wrapper {
  min-height: 100vh;

  overflow-y: auto;
}

.login-card {
  padding: 20px 0;
}

select.form-control {
  appearance: none;
  background: #fff url("images/down-arrow.svg") no-repeat right 18px center;
  background-size: 14px;
}

input[type="date"] {
  cursor: pointer;
}

@media (max-width: 991px) {
  .login-wrapper {
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .login-wrapper {
    padding: 35px 20px;
  }
  .overlay-content span {
    padding: 6px 10px;
    font-size: 12px;
  }
  .overlay-content h4 {
    font-size: 22px;
  }
  .overlay-content p {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .image-overlay {
    padding: 20px;
  }
  .overlay-content h4 {
    font-size: 14px;
  }
  .overlay-content p {
    font-size: 10px;
  }
  .login-image{
display:none;
}
     .login-wrapper {
    padding: 0px 10px;
  }
@media (max-width:390px){
.login-image img{
    width: 100%;
    height: fit-content;
    object-fit: contain;
}
}
