<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("css2.css");
html {
  height: 100%;
}

body {
  background-color: #a3a7c2;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Comfortaa", cursive;
}

a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.m-layout {
  position: relative;
  width: 375px;
  height: 667px;
  border-radius: 16px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #1D2837;
  border: 6px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0px 32px 47px rgba(32, 23, 23, 0.09);
}

.logo {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 44px;
  height: 44px;
  background-color: #375071;
  opacity: 1;
}

.m-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.m-form, .m-content {
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
}

.m-form_title {
  width: 100%;
  font-size: 26px;
  margin: 0 0 20px;
}

.m-form_group {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding-bottom: 18px;
}

.m-form_link {
  text-align: center;
}

.m-form_input {
  width: 100%;
  appearance: none;
  outline: 0;
  line-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  padding: 0 15px;
  display: block;
  font-size: 18px;
  box-sizing: border-box;
  color: #fff;
  font-weight: 300;
}

.m-form_label {
  display: block;
  margin-bottom: 10px;
}

.m-form_btn {
  appearance: none;
  outline: 0;
  background-color: #375071;
  border: 0;
  margin-top: 15px;
  line-height: 44px;
  padding: 0 15px;
  color: #fff;
  font-weight: 500;
  border-radius: 3px;
  width: 100%;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
  opacity: 1;
}

canvas {
  width: 100%;
  height: 100%;
  outline: none;
}

.spline-watermark {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  z-index: 2;
  opacity: 1;
}
.spline-watermark:hover {
  opacity: 0.8;
}

.spline-watermark img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 400px) {
  .m-layout {
    width: 100%;
    border-radius: 0;
    border: none;
  }
}</pre></body></html>