@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

section {
	position: relative;
	min-height: 100vh;
	background-color: #f8f8f8;
	display: flex;
	flex-direction: column;
	gap: 25px;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

section .container {
  position: relative;
  width: 800px;
  height: 1000px;
  background: #fff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
section img.webinarImg{
	width:100%;
	height:auto;
	max-width:800px;
	border-radius:25px;
	box-shadow:0 0 25px rgba(0,0,0,.3);
	overflow:hidden;
}
section h1.webinarTitle{
	position: relative;
	z-index: 9999;
	text-align: center;
	padding-top: 25px;
	font-weight: 400;
	font-size: 35px;
}

section .container .user {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

section .container .user .imgBx {
  position: relative;
  width: 50%;
  height: 100%;
  background: #ff0;
  transition: 0.5s;
}

section .container .user .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section .container .user .formBx {
  position: relative;
  width: 50%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  transition: 0.5s;
}

section .container .user .formBx form h2 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  color: #555;
}

section .container .user .formBx form input {
  position: relative;
  width: 100%;
  padding: 10px;
  background: #f5f5f5;
  color: #333;
  border: none;
  outline: none;
  box-shadow: none;
  margin: 8px 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 300;
}

section .container .user .formBx form input[type='submit'] {
  max-width: 120px;
  background: #677eff;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.5s;
}

section .container .user .formBx form .signup {
  position: relative;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #555;
  text-transform: uppercase;
  font-weight: 300;
}

section .container .user .formBx form .signup a {
  font-weight: 600;
  text-decoration: none;
  color: #677eff;
}

section .container .signupBx {
  pointer-events: none;
}

section .container.active .signupBx {
  pointer-events: initial;
}

section .container .signupBx .formBx {
  left: 100%;
}

section .container.active .signupBx .formBx {
  left: 0;
}

section .container .signupBx .imgBx {
  left: -100%;
}

section .container.active .signupBx .imgBx {
  left: 0%;
}

section .container .signinBx .formBx {
  left: 0%;
}

section .container.active .signinBx .formBx {
  left: 100%;
}

section .container .signinBx .imgBx {
  left: 0%;
}

section .container.active .signinBx .imgBx {
  left: -100%;
}

section .container .checkBx{
	display:flex;
	align-items:center;
	gap:10px;
}

section .container .checkBx input{
	width: auto !important;
}
section .container .checkBx label{
	font-size:13px;
}


section .container .cptchBx{
	margin:15px 0;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
	gap:10px;
}
section .container .cptchBx input{
	width: auto !important;
	max-width:80px;
}
section .container .checkBx label{
	font-size:13px;
}

@media (max-width: 991px) {
  section .container {
    max-width: 400px;
  }

  section .container .imgBx {
    display: none;
  }

  section .container .user .formBx {
    width: 100%;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  display: none; /* Başlangıçta gizli */
  overflow: hidden;
  outline: 0;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam arka plan */
}

/* Modal görünür olduğunda */
.modal.show {
  display: flex;
}

/* Modal pencere kapsayıcısı */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  max-height: 90vh; /* Modal yüksekliğini sınırlıyoruz */
}

/* Modal içerik kutusu */
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
  pointer-events: auto;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  max-width: 75%;
  width: 100%;
  max-height: 90vh; /* Modalın maksimum yüksekliğini ayarlıyoruz */
}

/* Modal Header, Body ve Footer alanları */
.modal-header,
.modal-body,
.modal-footer {
  padding: 1rem;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dee2e6;
}

.modal-title {
  margin: 0;
  font-size: 1.25rem;
}

/* Kapatma butonu stili */
.close {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  border: none;
  background: transparent;
  cursor: pointer;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #dee2e6;
}

/* İsteğe bağlı: Kapat butonuna hover efekti */
.close:hover {
  color: #999;
}

/* Modal Body: kaydırılabilir içerik */
.modal-body {
  overflow-y: auto;
  max-height: calc(90vh - 160px);
}

/* Mobil cihazlar için ayarlamalar */
@media only screen and (max-width: 576px) {
  .modal-content {
    max-width: 95%;
    width: 95%;
    max-height: 95vh;
  }
  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 0.75rem;
  }
  .modal-title {
    font-size: 1rem;
  }
  .close {
    font-size: 1.25rem;
  }
  .modal-body {
    max-height: calc(95vh - 120px);
  }
  body {
    font-size: 0.9rem;
  }
}


#closeModalBtn2{
	border: 0;
    outline: none;
    padding: 6px 28px;
    border-radius: 12em;
	transition:250ms ease;
}

#closeModalBtn2:hover{
	box-shadow:0 0 24px rgba(0,0,0,.1);
}