/* login.css */
body {
    background-color: #d8dce5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    margin: 0;
  }

  .card-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    width: 1200px;
    height: 750px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    flex-wrap: wrap;
  }

  .login-form {
    width: 100%;
  }

  .form-side, .image-side {
    flex: 1;
    padding: 50px 40px;
    position: relative;
  }

  .form-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .form-control {
    border-radius: 30px;
    padding: 20px 20px;
    margin-bottom: 25px;
    width: 100%;
    font-size: 16px;
    background-color: #f8f8f8;
    border: 2px solid #eee;
    font-weight: 500;
    height: 60px;
  }

  .btn-submit {
    background-color: #d30228;
    color: white;
    border-radius: 30px;
    padding: 14px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
    border: none;
  }

  .btn-submit:hover {
    background-color: #b20222;
  }

  .logo {
    width: 180px;
    margin-bottom: 20px;
  }

  .tagline {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    font-weight: 500;
  }

  .description {
    font-size: 14px;
    color: #777;
    margin-top: 30px;
  }

  .powered-by {
    font-size: 12px;
    color: #aaa;
    opacity: 0.7;
    margin-top: 10px;
  }

  .powered-by a {
    color: #aaa;
    text-decoration: none;
  }

  .powered-by a:hover {
    text-decoration: underline;
    color: #555;
  }

  .input-group {
    margin-bottom: 40px;
  }

  .input-group-text {
    background: transparent;
    border: none;
    cursor: pointer;
    padding-right: 10px;
  }

  .input-group-text svg {
    width: 28px;
    height: 28px;
    stroke: #777;
    stroke-width: 2;
    fill: none;
  }

  .forgot-remember {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
    font-size: 14px;
  }

  .forgot-remember a {
    color: #d30228;
    text-decoration: none;
  }

  .forgot-remember a:hover {
    text-decoration: underline;
  }

  .image-side {
    padding: 0;
  }

  @media (max-width: 768px) {
    .image-side {
      display: none;
    }
    .card-wrapper {
      width: 90%;
      height: auto;
    }
  }

  .carousel-inner, .carousel-item, .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .carousel-indicators {
  bottom: 0px; /* nokta konumunu ayarlamak için */
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d30228; /* kırmızı renk */
  opacity: 0.4;
  transition: opacity 0.3s ease;
  margin: 0 6px;
}

.carousel-indicators .active {
  opacity: 1;
}


  .overlay-text {
    position: absolute;
    bottom: 50px;
    left: 30px;
    background: rgba(255, 255, 255, 0.85);
    padding: 20px 30px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    max-width: 75%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }