@import url("https://fonts.googleapis.com/css2?family=Kavoon&display=swap");
*,
::before,
::after {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
}
hr {
  height: 0;
  box-sizing: content-box;
  border-top: 1px solid;
  border-color: inherit;
  overflow: visible;
}
ul,
ol {
  list-style: none;
}
a,
picture {
  display: inline-block;
}
a,
abbr[title] {
  text-decoration: none;
}
a,
button {
  color: inherit;
  cursor: pointer;
}
button,
input,
select,
textarea {
  font-family: inherit;
}
button,
select {
  text-transform: none;
}
main,
details,
template {
  display: block;
}
[hidden] {
  display: none !important;
}
summary {
  display: list-item;
}

/*  */

#video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Place video behind other content */
  opacity: 0.7;
}
/* global */
body {
  background-color: #0e161d;
  font-family: "Kavoon", serif;
  font-weight: 400;
  font-style: normal;
}
.container {
  width: 100%;
  max-width: 500px;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}
section {
  position: relative;
  min-height: 100vh;
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content.blur {
    filter: blur(3px);
}
h1 {
  font-size: 40px;
  color: #d4a02e;
  text-align: center;
}
h1 span {
  display: block;
  font-size: 32px;
}
form {
  padding-top: 40px;
}
.field-w {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.field-w img {
  position: relative;
  top: 16px;
}
.input-w {
  width: 100%;
  margin-left: 20px;
}
input {
  width: 100%;
  height: 40px;
  color: #ffffff;
  border: 1px solid #b5b5b5;
  border-radius: 8px;
  margin-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
label {
  font-size: 18px;
}
.blue {
  color: #3474ba;
}
.purple {
  color: #a367d9;
}
.yellow {
  color: #d4a02e;
}
.red {
  color: #c94e43;
}
.bg-blue {
  background-color: #29588b;
}
.bg-purple {
  background-color: #764fa0;
}
.bg-yellow {
  background-color: #987629;
}
.bg-red {
  background-color: #913d38;
}
.form-button {
  display: flex;
  padding: 12px;
  font-size: 20px;
  background-color: #d4a02e;
  color: #1c374f;
  border-radius: 12px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
.result-w {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-w .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0000007e;
  z-index: -1;
}
.result-box {
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 24px 24px;
  background-color: #0e161d;
  border-radius: 25px;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(51, 64, 130, 0.47);
  border: 1px solid #2e3c5c;
}
.result-box span {
  font-size: 20px;
  color: #d4a02e;
}
.result-box button {
  display: flex;
  padding: 12px 32px;
  font-size: 20px;
  background-color: #1c374f;
  color: #ffffff;
  border-radius: 12px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
}
.footer {
  font-family: sans-serif;
  font-weight: 300;
  font-size: 12px;
  margin-top: 40px;
  margin-bottom: 24px;
  text-align: center;
  color: #5b6975;
}
/*  */
.slide-up {
    animation-name: slide-up;
    animation-duration: 0.3s;
 }
 @keyframes slide-up {
    from {
       opacity: 0;
       transform: translateY(4.375rem);
    }
    to {
       opacity: 1;
       transform: translateY(0);
    }
 }
 .fade-in {
    animation-name: fade-in;
    animation-duration: 1s;
 }
 @keyframes fade-in {
    from {
       opacity: 0;
    }
    to {
       opacity: 1;
    }
 }