html {
  height: 100%;
}

body {
    /*background-color: #a3a7c2;
    background-color: #324664;*/
    background-color: #2b2b36;
    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: #ce8b82;
    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;
    right: 30px;
    width: 64px;
    height: 64px;
    opacity: 1;
    background-image: url(logo100.png);
    background-size:cover;

}

.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: 10px 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;
  margin-top:1rem;
}

.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.104);
  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;
  }
}