html {
  background-color: var(--black);
  height: 100vh
}
body {
  margin: 0;
  height: 100%;
}

@font-face {
  font-family: "Spline Sans Regular";
  src: url(../../assets/fonts/SplineSans-Regular.ttf);
}

* {
  font-style: normal;
  font-family: "Spline Sans Regular" !important;
}

.sign-in {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* padding-block: auto; */
  height: 100%;
  z-index: 1;
}
.sign-in .form {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: min(80px, 10vw);

  margin: 5vw;


  background-color: rgba(255, 255, 255, 0.60);
  backdrop-filter: blur(12px);
  
  border-radius: 16px;
  border: 1px solid var(--grey);
}
.sign-in .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  flex: 0 0 auto
}
.sign-in .text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--h2-font-family);
  font-weight: var(--h2-font-weight);
  color: var(--black);
  font-size: var(--h2-font-size);
  text-align: center;
  letter-spacing: var(--h2-letter-spacing);
  line-height: var(--h2-line-height);
  white-space: nowrap;
  font-style: var(--h2-font-style)
}
.sign-in .text {
  width: 100%;
  font-family: var(--body-regular-font-family);
  font-weight: var(--body-regular-font-weight);
  color: black;
  position: relative;
  font-size: var(--body-regular-font-size);
  text-align: center;
  letter-spacing: var(--body-regular-letter-spacing);
  line-height: var(--body-regular-line-height);
  font-style: var(--body-regular-font-style)
}
.sign-in .input, .sign-in .textfield {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 0 0 auto
}
.sign-in .caption, .sign-in .textfield label {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--caption-semibold-font-family);
  font-weight: var(--caption-semibold-font-weight);
  color: var(--black);
  font-size: var(--caption-semibold-font-size);
  letter-spacing: var(--caption-semibold-letter-spacing);
  line-height: var(--caption-semibold-line-height);
  white-space: nowrap;
  font-style: var(--caption-semibold-font-style)
}
.sign-in .field, .sign-in .name {
  display: flex;
  min-width: 144px;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid;
  border-color: var(--grey)
}
.sign-in .text-2 {
  position: relative;
  flex: 1;
  margin-top: -1px;
  opacity: .5;
  font-family: var(--body-regular-font-family);
  font-weight: var(--body-regular-font-weight);
  color: var(--black);
  font-size: var(--body-regular-font-size);
  letter-spacing: var(--body-regular-letter-spacing);
  line-height: var(--body-regular-line-height);
  font-style: var(--body-regular-font-style)
}
.sign-in .icon-eye {
  position: relative;
  width: 24px;
  height: 24px
}
.sign-in .button-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 12px;
  width: 100%;
  border-radius: 8px;
  border: none;
  background: var(--Main-Gradient,linear-gradient(92deg,#cda74e 0,#c79728 100%))
}
.sign-in .button-main:hover {
  background: var(--Black,#222529)
}
a {
  text-decoration: none
}
.sign-in .text-3 {
  width: fit-content;
  margin-top: -1px;
  font-family: var(--body-semibold-font-family);
  font-weight: var(--body-semibold-font-weight);
  color: var(--white);
  white-space: nowrap;
  position: relative;
  font-size: var(--body-semibold-font-size);
  text-align: center;
  letter-spacing: var(--body-semibold-letter-spacing);
  line-height: var(--body-semibold-line-height);
  font-style: var(--body-semibold-font-style)
}
.header {
  opacity: 70%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-image: url(/assets/images/logo/SU_logo.svg);
  z-index: -1;
  filter: blur(5px);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
/* .header > img {
  height: 80%;
  width: 80%;
  aspect-ratio: 1
} */

.textfieldWithLabel {
  display: flex;
  flex-direction: column;
  width: 100%;
}
