body {
  font-family: "Arial", sans-serif;
  background-color: #f4f7fe;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.container {
  display: flex;
  max-width: 1200px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0 auto;
}

.d-none {
  display: none;
}

h1 {
  font-size: 28px;
  color: #333333;
  margin-bottom: 10px;
}

p {
  font-size: 14px;
  color: #777777;
  margin-bottom: 40px;
}

.btn-primary {
  background-color: #1f2937;
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}
.btn-primary:hover {
  background-color: #111827;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    max-width: 100%;
  }
}
:root {
  --nav-width: 6.25rem;
  --white-color: #F7F6FB;
  --body-font: "Mulish", sans-serif;
  --normal-font-size: 16px;
  --z-fixed: 100;
  /* MAIN COLORS */
  --main-bg: #E5E5E5;
  --main-grad: conic-gradient(from 161.26deg at 78.44% -5%, #B460DC -19.64deg, #713AE8 205.27deg, #B460DC 340.36deg, #713AE8 565.27deg);
  --main-grad-flip: conic-gradient(from 161.26deg at 78.44% -5%, #713AE8 -19.64deg, #B460DC 205.27deg, #713AE8 340.36deg, #B460DC 565.27deg);
  --main-disabled: conic-gradient(from 161.26deg at 78.44% -5%, #B460DC -19.64deg, #713AE8 205.27deg, #B460DC 340.36deg, #713AE8 565.27deg);
  /* ACCENT COLORS */
  --default: #713AE8;
  --default-04: rgba(55, 82, 255, 0.04);
  --light: #DDE2FF;
  --disabled: #E7EAFF;
  /* GRAY SCALES */
  --black: #252733;
  --gray-dark: #424242;
  --gray: #4B506D;
  --gray-light: #C5C7CD;
  --divider: #DFE0EB;
  --divider-graph: #EBEDF0;
  --gray-lightest: #e5e6ec;
  --bg: #F3F4F5;
  --extra-light: #FCFDFE;
  --white: #FFFFFF;
  /* SIDEBAR */
  --sidebar-bg: #363740;
  /* GREEN */
  --green: #189a43;
  --lgreen: #D4F5EA;
  /* YELLOW */
  --yellow: #FEC400;
  --lyellow: #FFEDB2;
  /* RED */
  --red: #F12B2C;
  /* TRANSPARENT */
  --transparent: var(--transparent) !important;
  --slider-connect-bg: #713AE8;
  --slider-tooltip-bg: #fff;
  --slider-handle-bg: #713AE8;
  --slider-tooltip-color: #252733;
  --slider-handle-ring-color: #713AE8;
}

form div {
  margin-bottom: 15px;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
  color: #333;
}

input[type=text],
input[type=email],
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
}

input[type=checkbox] {
  margin-right: 10px;
}

button {
  width: 100%;
  background-color: #007bff;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary,
.btn-primary:hover {
  padding: 1.1rem 1.5rem !important;
  background: var(--main-grad) !important;
  border-radius: 8px !important;
  height: 3.2rem !important;
  color: var(--white) !important;
}

.btn-primary::after {
  content: "";
  opacity: 0;
  background: var(--main-grad-flip) !important;
  transition: 0.2s;
  display: block;
  position: relative;
  height: 3.2rem;
  margin: -1.1rem -1.5rem;
  top: -1.15rem;
  border-radius: 6px;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary * {
  position: relative;
  z-index: 2;
}

.btn-primary:hover {
  color: #fff !important;
}

button:hover {
  background-color: #0056b3;
}

input:user-invalid {
  border-color: #e74c3c;
}

input:user-invalid:focus {
  box-shadow: 0 0 5px rgba(231, 76, 60, 0.5);
}

span.error {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

#url_prefix {
  display: inline-block;
  width: calc(100% - 120px);
  margin-right: 5px;
}

#url_prefix + span {
  display: inline-block;
  font-size: 14px;
  color: #555;
}

/*# sourceMappingURL=critical.css.map*/