@font-face {
  font-family: 'Helvatice';
  src: url('webfonts/helvetica-light-587ebe5a59211.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Helvatice", sans-serif;
}


body {
  height: 100vh;
  overflow: hidden;

}


a {
	text-decoration:none;
	color:#004b82;
}


ul {
  list-style: none;
}

.row > span {
	color:#00004D;
}

input:focus{
	outline: 0 none;
    outline-offset: 0;
    box-shadow: 0 0 0 0.2rem #bfcdde;
	border-radius:4px;
    border-color: #004b82;
}


.container {
  background-color: #f1f6f9;
  display: flex;
  width: 100%;
  height: 100vh;
}

.logo {
  display: flex;
  justify-content: center;
}

/* Genel Stil */
.form-sign-up {
  max-width: 600px;
  height: 700px;
  min-height: 500px;
  max-height: 700px;
  margin: auto;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  border-radius: 15px;
}

#progress-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
  height: 40px;
}

#progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  height: 8px;
  width: 0%;
  background-color: #004b82;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  z-index: 0;
  transition: width 0.4s ease;
  transform: translateY(-50%);
  border-radius: 5px;
}


.rules {
  position: absolute;
  background-color: #fff;
  width: 65%;
  border: 1px solid rgba(72, 140, 186, 0.1);
  left: 50%;
  top: 50%;
  max-height: 100vh;
  overflow: scroll;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  user-select: none;
  touch-action: none;
  transition: opacity 0.5s ease;
  z-index: 1151511;
  padding: 15px;
}

.rules.visible {
  opacity: 1;
  pointer-events: auto;
  user-select: auto;
  touch-action: auto;
}

.modal-rules {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    max-height: 700px;
    overflow: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.modal-rules h2 {
    padding: 10px;
    margin-bottom: 20px;
}

.modal-rules ol {
    padding-left: 20px;
}

.modal-rules li {
    margin-bottom: 20px;
}

.modal-rules b {
    display: block;
    margin-bottom: 5px;
}

.modal-rules p {
    margin: 0;
    color: #3f4254;;
}

/* <b> etiketini kalınlaştırma */
b {
  font-weight: 700; /* Kalın yazı için */
}

/* <p> etiketini ince yapma */
p {
  font-weight: 100; /* İnce yazı için */
}


.overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}


.modal-header {
  background-color: #3699ff; /* bg-primary renk kodu */
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  color: #fff; /* text-white renk kodu */
  margin: 0;
}

.close-modal {
  background: none;
  border: none;
  color: #fff; /* text-white renk kodu */
  font-size: 1.5rem;
  cursor: pointer;
}

.close-modal:focus {
  outline: none;
}

.circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  position: relative;
  transition: background-color 0.3s ease, transform 0.3s ease;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.circle.active {
  background-color: #004b82;
  transform: scale(1.1);
}

.circle.completed {
  background-color: #004b82;
  cursor: pointer;
}

.circle.completed::after {
  content: '✓';
  position: absolute;
  font-size: 22px;
  color: #fff;
}


.step {
  display: none;
  width: 100%;
}

.step.active {
  display: block;
}

.password-requirements {
  margin-top: 15px;
}

.password-requirements .requirement {
  color: #0007;
  font-size: 14px;
}

.password-requirements .requirement.valid {
  color: #4caf50;
}

input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
	outline:none;
}

input[type="checkbox"] {box-shadow:none !important;}

input.valid {
  border-color: #4caf50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

input.invalid {
  border-color: #f44336;
  box-shadow: 0 0 8px rgba(244, 67, 54, 0.3);
}

button.sign-up {
  width: 100%;
  padding: 15px;
  background-color: #004b821e;
  color: #004b82;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

button.sign-up:hover {
  background-color: #004b82;
  color: #fff;
  transform: translateY(-2px);
}

button.sign-up:disabled {
  background-color: #9e9e9e;
  cursor: not-allowed;
}




.monogram {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #f1f6f9;
  border-radius: 50%;
  z-index: 4;
  box-shadow: 14px 0 18px -13px #0000008c;
}

.modal-sms {
  display: none; 
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Yarı şeffaf arka plan */
  z-index: 9999;
}

/* Modal içerik stili */
.modal-content-sms {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 2.5rem;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}


.headerSms {
  margin-bottom: 2rem;
}

.close {
  position: relative;
  color: #dadada;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 300ms ease-in-out;
  z-index: 1;
  cursor: pointer;
}

.close:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(177, 171, 171, 0); /* Transparan arka plan */
  border-radius: 50%;
  transition: all 0.2s ease;
  transform: translate(-51%, -46%);
  z-index: -1;
}

.close:hover {
  color: #fff;
}

.close:hover:before {
  width: 40px;
  height: 40px;
  background-color: #122868; /* Üzerine gelince arkaplan rengi */
}

/* Başlık ve açıklama stili */
h2 {
  margin-top: 0;
  font-weight: 700;
  display: flex;
  justify-content: center;
  text-align: center;
}


.messageNo {
  margin: 10px 0 20px;
  color:rgb(100, 116, 139);
  font-size: 15px;
  font-weight: 400 !important;
  line-height: 22.5px;
  text-align: center;
}

/* Kod input alanı stili */
.input-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.input-group input {
  width: 40px;
  height: 40px;
  font-size: 24px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 0;
  padding: 0;
}

/* Düğme stili */
button {
  background-color: rgb(99 102 241 / 1);
  color: white;
  border: none;
  padding: 0.625rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 0.875rem;
  margin: 10px 0;
  cursor: pointer;
  border-radius: 4px;
  transition-duration: 150ms;
  width: max-content;
}

button:hover {
  background-color: rgb(79 70 229 / 1);
}

.smsButtons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top:1rem;
}

.codeResend {
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: center;
  letter-spacing: 0.65px;
}

#sendCodeButton {
  font-weight: 700;
  color: rgb(79 70 229 / 1);
  cursor: pointer;
}

.smsFooter {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
}


.name-infermotion {
  font-size: 12px;
  color: #675252da;
}

.rule-acc {
  color: green;
  font-weight: 700;
}

.error-msg {
  font-size: 12px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #004b82;
}

.name-infermotion > ul > li {
  list-style: none;
}



/* FORM KISMI */
h1 {
  color: #004b82;
  font-weight: 500;
  line-height: 1.2;
}



.phone_set {
  margin: 15px 0;
}


.business_desc {
  margin: 5px 0;
}

.date-text {
  font-weight: 600;
  font-size: 15px;
  color: #2196f3;
}

/* BUTTON START */

h5 {
  color: #0760a0;
}

.sign-up {
  background-color: #dde6ed;
  color: #000000;
  font-weight: 600;
  width: 370px;
  height: 3rem;
  margin: 5px auto;
  border: none;
  border-radius: 5px;
  transition: 0.5s;
  font-size: 1rem;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.sign-up:hover {
  background-color: #0760a0;
  color: #fff;
  cursor: pointer;
}

/* BUTTON END */
/* FORM END */

/* VİDEO START */

.admin-login-video {
  width: 50%;
}

.admin-login-video > video {
  height: 100%;
  object-fit: cover;
}

/* VİDEO END */

/*
.footer {
  display: block;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  min-height: 20px;  değişebilir
  width: 100%;
  overflow: hidden;
}

.footer .row {
  width: 100%;
  font-size: 11px;
  text-align: center;
}

.footer .row .bfysoft {
  color: #0760a0;
  font-weight: 700;
}

*/

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

  .modal-rules {
    width: 95%;
  }

  .container {
    width: 100%;
    overflow: scroll;
  }


  .form-sign-up {
    width: 100%;
    padding: 20px;

  }

  .form-sign-up-item {
    width: 100%;
  }

  .form-sign-up-item div {
    align-items: center;
  }

  .form-sign-up-item input,
  .sign-up {
    width: 300px;
  }

  .admin-login-video,
  .monogram {
    display: none;
  }

  input[type="date"]:not(.has-value):before {
    color: lightgray;
    content: attr(placeholder);
  }
}

@media only screen and (max-width: 800px) {
  .container {
    width: 100%;
    overflow: scroll;
  }

  .form-sign-up {
    width: 100%;
  }

  .form-sign-up-item {
    width: 100%;
  }

  .form-sign-up-item div {
    align-items: center;
  }

  .form-sign-up-item input,
  .sign-up {
    width: 300px;
  }

  .admin-login-video,
  .monogram {
    display: none;
  }

  input[type="date"]:not(.has-value):before {
    color: lightgray;
    content: attr(placeholder);
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {
  .container {
    width: 100%;
    overflow: scroll;
  }

  .form-sign-up {
    width: 90%;
  }

  .form-sign-up-item {
    width: 100%;
    flex-direction: column;
  }

  .form-sign-up-item div {
    align-items: center;
  }

  .form-sign-up-item input,
  .sign-up {
    width: 100%;
  }

  .admin-login-video,
  .monogram {
    display: none;
  }

  input[type="date"]:not(.has-value):before {
    color: lightgray;
    content: attr(placeholder);
  }
}

@media only screen and (min-width: 1200px) {
  .admin-login-video {
    display: block;
  }

  .form-sign-up {
    width: 50%;
  }

  .monogram {
    display: flex;
  }

  .container {
    overflow: hidden;
  }
}
