/* TezFormPage Component Styles */
.formPage-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.formPage-content {
  background-color: rgba(30, 30, 30, 0.9);
  color: var(--light-color);
  border-radius: var(--border-radius);
  padding: calc(25px + var(--sat)) 10px 0 10px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.formPage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  flex-shrink: 0;
}

.formPage-header:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, #e74c3c, transparent);
}

.formPage-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--light-color);
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.formPage-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  padding-bottom: calc(60px + var(--sab));
}

