main {
  width: 80%;
  margin: 50px auto;
}

main .odemeler-giris {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 50px;
}

main .odemeler-giris .odeme-bilgi {
  width: 40%;
  color: rgb(40, 40, 40);
  border: 1px solid rgba(40, 40, 40, 0.2);
  color: rgb(20, 20, 20);
  height: fit-content;
  border-radius: 30px;
  padding: 20px 30px;
}

main .odemeler-giris .odeme-bilgi h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
}

main .odemeler-giris .odeme-bilgi p {
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 400;
  line-height: 1.4;
}

main .odemeler-giris .odeme-bilgi p b {
  font-weight: 600;
}

main .odemeler-giris .odeme-form {
  width: 60%;
  color: rgb(40, 40, 40);
  border: 1px solid rgba(40, 40, 40, 0.2);
  color: rgb(20, 20, 20);
  height: fit-content;
  border-radius: 30px;
  padding: 20px 30px;
}

main .odemeler-giris .odeme-form h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgb(20, 20, 20);
}

main .odemeler-giris .odeme-form form {
  display: flex;
  flex-direction: column;
}

main .odemeler-giris .odeme-form form input,
main .odemeler-giris .odeme-form form textarea,
main .odemeler-giris .odeme-form form button {
  width: 100%;
  padding: 8px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  outline: none;
  resize: none;
  border: 1px solid rgba(40, 40, 40, 0.2);
  margin-top: 3px;
}

main form label {
  display: flex;
  font-size: 15px;
  font-weight: 400;
}

main form label a {
  text-decoration: underline;
  display: inline-block;
  margin-right: 5px;
  font-weight: 500;
}

main form label input {
  max-width: 20px;
  max-height: 20px;
  margin-right: 10px;
}

main .odemeler-giris .odeme-form form button {
  background-color: rgb(42, 171, 50);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border: none;
  margin-top: 20px;
  transition: 0.2s ease-in-out;
  width: fit-content;
  padding: 12px 25px;
}

main .odemeler-giris .odeme-form form button:hover {
  background-color: rgb(42, 171, 50, 0.8);
}

main .bankalar {
  display: block;
  width: 100%;
  margin-top: 50px;
  user-select: none;
}

main .bankalar img {
  display: block;
  margin: 0 auto;
  height: 50px;
  margin-top: 20px;
}

main .bankalar img:first-child {
  height: 70px;
}

@media screen and (max-width:1050px) {
  main {
    width: 90%;
    margin: 30px auto;
  }

  main .odemeler-giris {
    flex-wrap: wrap;
    gap: 30px;
  }

  main .odemeler-giris .odeme-bilgi {
    width: 100%;
  }

  main .odemeler-giris .odeme-form {
    width: 100%;
  }

  main .bankalar img {
    width: 100%;
    height: auto;
  }

  main .bankalar img:first-child {
    height: auto;
    width: 70%;
  }
}

@media screen and (max-width:650px) {
  main .odemeler-giris .odeme-bilgi h2 {
    font-size: 16px;
  }

  main .odemeler-giris .odeme-bilgi p {
    font-size: 14px;
  }

  main .odemeler-giris .odeme-form h1 {
    font-size: 24px;
  }

  main form label {
    display: flex;
    font-size: 14px;
    font-weight: 400;
  }

  main form label input {
    max-width: 18px;
    max-height: 18px;
    margin-right: 10px;
  }
}