@charset "UTF-8";


  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');


img {
  max-width: 20%;
  height: auto;
  padding-bottom: 30px;
}

body {
  font-size: 13px;
  line-height: 1.8;
  color: #222;
  background: #f8f8f8;
  font-weight: 400;
  font-family: Poppins;
  background-image: url("images/background.png");
  overflow: hidden;
}


.main {
  background: #f8f8f8;
  display: none;
}

.yukseklik {
  height: 100vh;
}

.cevapalani-yukseklik {
  height: 100vh;
}

.giris-alani {
  width: 900px;
  background: #fff;
  margin: 0 auto;
  box-shadow: 0px 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0px 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0px 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
}

.title {
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  padding: 20px 0;
}

.description {
  text-align: center;
  font-size: 18px;
}

.giris-bilgileri {
  text-align: center;
}

.input {
  width: 50%;
  border: none;
  border-bottom: 1px solid #999;
  padding: 5px 30px;
  box-sizing: border-box;
}

.input::-webkit-input-placeholder {
  color: #999;
}

.input::-moz-placeholder {
  color: #999;
}

.input:-ms-input-placeholder {
  color: #999;
}

.input:-moz-placeholder {
  color: #999;
}

.input:focus {
  border-bottom: 1px solid #222;
}

.input:focus::-webkit-input-placeholder {
  color: #222;
}

.input:focus::-moz-placeholder {
  color: #222;
}

.input:focus:-ms-input-placeholder {
  color: #222;
}

.input:focus:-moz-placeholder {
  color: #222;
}

.checkbox {
  padding: 20px 0;
}

.soru-baslik {
  text-align: center;
  font-size: 30px;
  padding-bottom: 20px;
}

.cevap-alani {
  padding: 50px;
}

.sonucAlani {
  text-align: center;
}

h2 {
  text-align: center;
}

.sonrakiSoruDiv {
  text-align: center;
  padding-top: 50px;
}

#sonrakiSoru {
  font-size: 16px;
}

.kalan-soru {
  text-align: center;
}

#sonucAlani {
  width: 900px;
  background: #fff;
  margin: 0 auto;
  box-shadow: 0px 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0px 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0px 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  max-height: 70vh; /* Popup'ın maksimum yüksekliği */
  overflow-y: auto; /* Dikey kaydırma çubuğunu etkinleştir */
}

/* Kaydırma çubuğu stilleri */
.popup-content {
  max-height: 100%; /* İçerik maksimum yüksekliği */
  overflow-y: auto; /* İçerikte de kaydırma çubuğunu etkinleştir */
}

.inputGroup {
  background-color: #fff;
  display: block;
  margin: auto;
  margin-bottom: 10px;
  position: relative;
  width: 500px;
}
.inputGroup .cevaplar {
  padding: 12px 30px;
  width: 100%;
  display: block;
  text-align: center;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  font-size: 20px;
}
.inputGroup .cevaplar:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #5562eb;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}
.inputGroup input:checked ~ .cevaplar {
  color: #fff;
}
.inputGroup input:checked ~ .cevaplar:before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}
.inputGroup input:checked ~ .cevaplar:after {
  background-color: #54E0C7;
  border-color: #54E0C7;
}
.inputGroup input {
  width: 32px;
  height: 32px;
  order: 1;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.form {
  padding: 0 16px;
  max-width: 550px;
  margin: 50px auto;
  font-size: 18px;
  font-weight: 600;
  line-height: 36px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

code {
  background-color: #9AA3AC;
  padding: 0 8px;
}

.test-bitti-div {
  text-align: center;
  padding-bottom: 30px;
}

.test-bitti {
  font-size: 80px;
  color: green;
}

.cikis-yap {
  text-align: center;
  padding-bottom: 50px;
}/*# sourceMappingURL=style.css.map */