.main-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-container {
  width: 100%;
}
.profile-btn {
  top: 30px;
}
.login-card {
  background: #fff;
  width: 100% !important;
  margin: auto;
  border-radius: 15px;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-content {
  min-height: 92% !important;
}

.auth-border {
  background: #0b6fc01e;
  padding: 25px;
  border-radius: 30px;
  max-width: 630px;
  margin: auto;
}

.login-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.login-card h3 {
  font-weight: 600;
  color: #333;
}

.form-control {
  border-radius: 10px;
  padding: 12px;
}

.btn-custom {
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
}

.extra-links a {
  font-size: 0.9rem;
  color: #6c63ff;
}

.extra-links a:hover {
  text-decoration: underline;
}

.btn-custom {
  background: #368186 !important;
  border: 0;
}

.main-content {
  padding-bottom: 0 !important;
}

@media (max-width: 992px) {
  .main-content {
    display: block;
  }
  .login-container {
    padding: 50px 0px;
  }
  .main-content .main-content {
    position: unset;
    min-height: 100vh;
    padding: 20px 15px !important;
  }
  .auth-border {
    padding: 15px;
  }

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

.login-card h3 {
  font-weight: 600;
}
.otp-text {
  font-size: 14px;
  color: #6c757d;
  text-align: center;
  margin-bottom: 20px;
}
.otp-inputs {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 20px;
}
.otp-inputs input {
  width: 48px;
  height: 55px;
  font-size: 22px;
  text-align: center;
  border: 1px solid #ced4da;
  border-radius: 8px;
  transition: border-color 0.2s;
}
.otp-inputs input:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: 0 0 5px rgba(13, 110, 253, 0.3);
}
.btn-custom {
  border-radius: 8px;
  font-weight: 500;
}
.extra-links {
  font-size: 14px;
}


@media (max-width: 992px) {
  .footer {
      bottom: -87px !important;
  }
}

@media (max-width: 420px) {
  .otp-inputs input {
    width: 36px;
    height: 37px;
  }
}

@media (max-height: 800px) {
  footer {
    position: absolute !important;
    bottom: -60px !important;
  }
  .main-content {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 991px) {
  .footer {
      margin-top: 50px !important;
  }
}

.image-upload {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.upload-label {
  width: 100px;
  height: 100px;
  border: 2px dashed #368186;
  border-radius: 50%;
  background-color: #e3f2fd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
}

.upload-label:hover {
  background-color: #d0ebff;
}

.upload-label i {
  font-size: 24px;
  color: #368186;
  transition: 0.3s;
}

.upload-label span {
  font-size: 12px;
  color: #368186;
  margin-top: 8px;
}

/* When image is uploaded */
.uploaded {
  border: none;
  background: none;
}

.uploaded img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
