*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Segoe UI";
  color: white;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

input,
button,
textarea {
  border: none;
  outline: none;
  line-height: 1;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  background-color: transparent;
}

@font-face {
  font-family: "Segoe UI";
  src: url("./assets/fonts/SegoeUI/Segoe\ UI.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Segoe UI";
  src: url("./assets/fonts/SegoeUI/Segoe\ UI\ Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Segoe UI";
  src: url("./assets/fonts/SegoeUI/Segoue\ UI\ Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Segoe UI";
  src: url("./assets/fonts/SegoeUI/Segoe\ UI\ Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Segoe UI";
  src: url("./assets/fonts/SegoeUI/Segoe\ UI\ Bold\ Italic.ttf")
    format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Segoe UI";
  src: url("./assets/fonts/SegoeUI/Segoe\ UI\ Semibold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 655px; /*800px */
  position: relative;
  color: black;
  text-align: center;
  font-size: 15px;
}

.content {
  position: absolute;
  width: 500px;
  width: clamp(260px, 90%, 500px);
  top: 60%;
}

.card {
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.card__body {
  flex-direction: column;
  padding: 20px;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-vertical {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px 10px;
}

.btn-container {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.btn {
  width: 200px;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 17px 0px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 10px;
  color: white;
  background: linear-gradient(to bottom, #ff7ac9, #ec008c);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn:focus,
.btn:active {
  outline: none;
  border: none;
  background-color: transparent !important;
}

.stack {
  margin: 20px 20px 30px 20px;
}

.stack label {
  margin-bottom: 6px;
}

.link-text {
  text-decoration: underline;
  color: #ec008c;
  font-weight: 700;
}

.bold-text {
  color: #ec008c;
  font-weight: 700;
}

h2 {
  color: #ec008c;
  font-size: 22px;
}

.terms-conditions {
  margin-bottom: 25px;
}

.dash-line {
  margin: 0px 30px;
}

.dash-line hr {
  border-top: 1px dashed #d2d2d2;
}