body {
  background: url('/assets/images/martkeplaces.png') center/cover no-repeat fixed;
  min-height: 100vh;
}

span, label {
  font-family: 'Montserrat', sans-serif;
}

.check {
  font-weight: 600;
  font-size: 24px;
}

.offer-modal {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px 40px;
}

.offer-modal-content {
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: auto;
}

.offer-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 28px 32px;
}

.offer-form .form-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.offer-form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background-color: #f5f5f5;
  color: #202020;
  transition: border-color 0.3s ease;
}

.offer-form input[type="email"]:focus {
  outline: none;
  border-color: rgba(0, 158, 255, 1);
}

.offer-subtitle {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
}

.timer-block {
  font-family: monospace;
  font-size: 20px;
  margin: 10px 0 20px;
  text-align: center;
}

.purchase-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: -4px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
}

.price-current {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.price-old {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

.price-old .old {
  text-decoration: line-through;
}

.checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 4px;
}

.check {
  font-size: 12px;
  line-height: 1.4;
  color: #202020;
}

.check a {
  text-decoration: underline;
}

button.pay {
  width: 100%;
  margin: 0;
}

@media (max-width: 640px) {
  .offer-modal-content {
    margin: 20px auto;
  }

  .timer-block {
    font-size: 18px;
  }

  .price-current {
    font-size: 32px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.3s ease;
  gap: 24px;
  display: flex;
  flex-direction: column;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0;
  margin-bottom: 20px;
}

.modal-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: #202020;
}

.close {
  color: #999;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.close:hover {
  color: #202020;
}

.login-form {
  display: flex;
  flex-direction: column;
  padding: 0 24px 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #202020;
  font-family: 'Montserrat', sans-serif;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background-color: #f5f5f5;
  color: #202020;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: rgba(0, 158, 255, 1);
}

.forgot-password {
  display: block;
  text-align: left;
  color: #202020;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #555;
  text-decoration: underline;
}

.login-submit-btn {
  width: 100%;
  background-color: rgba(0, 158, 255, 1);
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-submit-btn:hover {
  background-color: rgba(0, 138, 225, 1);
}

@media (max-width: 768px) {
  .hero-content {
    left: 20px;
    max-width: calc(100% - 40px);
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }
}