/* Google Fonts - Poppins 
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");*/

* {
  /*margin: 0;
  padding: 0;*/
  box-sizing: border-box;
  font-family: sans-serif;
  color: light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
}

button {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  padding: 14px 22px;
  border: none;
  background: #4070f4;
  border-radius: 6px;
  cursor: pointer;
}
button:hover {
  background-color: #265df2;
}
button.show-modal,
.modal-box {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
section.active .show-modal {
  display: none;
}
.overlays {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
}
section.active .overlays {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 380px;
  width: 100%;
  padding: 30px 20px;
  border-radius: 24px;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%) scale(1.2);
}
section.active .modal-box {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.modal-box i {
  font-size: 70px;
  color: #4070f4;
}
.modal-box h2 {
  margin-top: 20px;
  font-size: 25px;
  font-weight: 500;
  color: #333;
}
.modal-box h3 {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  text-align: center;
}
.modal-box .buttons {
  margin-top: 25px;
}
.modal-box button {
  font-size: 14px;
  padding: 6px 12px;
  margin: 0 10px;
}

/* Şifre değiştir butonu */
.normalarama1{
  background: #3b82f6;          /* buton rengi */
  color: #ffffff !important;     /* yazı rengi */
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;              /* kalın */
  letter-spacing: .2px;
  line-height: 2;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;          /* loader için güzel */
  align-items: center;
  justify-content: center;
  gap: 8px;                      /* loader ile yazı arası */
}

/* Hover */
.normalarama1:hover{
  background: #2563eb;
}

/* Disabled (loading vs) */
.normalarama1:disabled{
  background: #93c5fd;
  cursor: not-allowed;
  opacity: .9;
}

/* Buton içi yazı/loader */
.normalarama1 .btn-text{
  color: #ffffff !important;
}
.normalarama1 .btn-loader img{
  display:block;
}



.modal-close-x{
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  font-weight: 800;
  border-radius: 999px;          /* OVAL */
  color: #111;
  background: transparent;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: background-color .2s, color .2s;
}
.modal-close-x:hover{
  background-color:#e81123;
  color:#fff;
}

.pass-wrap{
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.pass-wrap .inputss2{
  padding-right: 46px; /* göz için yer */
}

.pass-eye{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.pass-eye:hover{ background: rgba(0,0,0,.06); }
.pass-eye:active{ background: rgba(0,0,0,.10); }

.eye-ico{
  width: 18px;
  height: 18px;
  fill: #6b7280;
}
.pass-eye:hover .eye-ico{ fill: #111827; }
