@charset "UTF-8";
/* CSS Document */

/* Modal overlay */
.kp-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(24, 32, 38, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

/* Modal box */
.kp-modal {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background-color: #384955;
  color: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 420px;
  z-index: 1001;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

/* Modal open state */
.kp-modal.active,
.kp-modal-overlay.active {
  display: block;
}

/* Close button */
.kp-close-btn {
    position: absolute;
    top: 0rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 3rem;
    color: #FFFFFF;
    cursor: pointer;
}

/* Form styles */
.kp-modal-title {
  margin-top: 0;
  color: #00a6e4;
  font-size: 1.75rem;
  text-align: center;
}

.kp-modal-subtitle {
  text-align: center;
  color: #9caebc;
  margin-bottom: 1.5rem;
}

.kp-input {
  display: block;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.75rem;
  border-radius: 6px;
  border: none;
  background: #9caebc;
  color: #000;
  font-size: 1rem;
}

.kp-submit-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: #00a6e4;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.kp-submit-btn:hover {
  background-color: #0088b3;
}
