

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: #0a0a0a;
  background-image: url(assets/PATTERN.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'ClashDisplay-Regular',sans-serif;
  overflow-x: hidden;
  color: #fff;
  position: relative;
}

::-webkit-scrollbar {
  display: none;
}

#fluid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

header {
  min-height: 10vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 40px
}

header .logo {
  width: 80px;
}

.logo img {
  width: 100%;
}

.cform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 20%;
}

.cform .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cform .top h2 {
     font-size: 64px;
    color: #0a0a0a;/* Text color is transparent */
    text-shadow: 
        -1px -1px 0 #fff, 
        1px -1px 0 #fff, 
        -1px 1px 0 #fff, 
        1px 1px 0 #fff, 
        -1px 0 0 #fff, 
        1px 0 0 #fff, 
        0 -1px 0 #fff, 
        0 1px 0 #fff; /* Adjust the shadow size for a more pronounced outline */
    letter-spacing: 2px; /* Adjust spacing between letters */
    line-height: 70px;
    margin-top: 0;
    margin-bottom: 40px;
    font-weight: bolder;
        font-family: 'ClashDisplay-Bold', sans-serif;
}

.cform .profile {
  width: 80px;
  padding: 0 16px 0 0;
}

.cform .profile img {
  width: 100%;
}

.mid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom:40px;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60%;
  margin-bottom: 10vh;
}

.input-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
 margin-bottom: 58px;
}

.input-wrapper p {
  margin: 0;
}

.input-wrapper p span {
  color: red;
}

input {
  padding: 10px 0;
  font-size: 1rem;
  border: none;
  outline: none;
  background: transparent;
  color: white;
  position: relative;
  z-index: 1;
  height: 40px;
  padding-top: 6px;
  font-family: 'ClashDisplay-Regular',sans-serif;
}

textarea {
  padding: 10px 0;
  font-size: 1rem;
  border: none;
  outline: none;
  background: transparent;
  color: white;
  position: relative;
  z-index: 1;
  height: 100px;
  resize: none;
  padding-top: 6px;
  font-family: 'ClashDisplay-Regular',sans-serif;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-family: 'ClashDisplay-Regular',sans-serif;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-family: 'ClashDisplay-Regular',sans-serif;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-family: 'ClashDisplay-Regular',sans-serif;
}

input::placeholder, textarea::placeholder {
  font-family: 'ClashDisplay-Regular',sans-serif;
}

svg {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 0;
  overflow: visible;
}

path {
  stroke: white;
  fill: none;
  stroke-width: 1;
}

input[type=submit] {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 10px 60px;
  border: 1px solid #fff;
  border-radius: 30px;
  height: 50px;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
}

input[type=submit]:hover {
  background-color: #fff;
  color: #000;
}

.numbers p {
  margin: 0;
  margin-bottom: 70px;
  font-size: 35px;
  font-family: 'ClashDisplay-Medium';
}

.numbers {
  padding-right: 32px;
}

.further {
  padding-left: 70px;
}

.further ul {
  list-style: none;
  margin-bottom: 40px;
}

.further li {
  margin-bottom: 10px;
  font-weight: 400;
}

.further li a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.further li:nth-child(1) {
  color: #bbbbbb;
}

.resources {
  position: absolute;
  right: 10px;
  text-align: right;
     bottom: 24px;
  font-size: 14px;
}

.resources p {
  color: #bbbbbb;
}

.resources ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 140px;
  list-style-type: none;
}

.resources li a {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 750px) {
    header{
            padding: 5vh 18px;
            margin-bottom: 24px;
    }
    header .logo{
        width:60px;
    }
  .cform {
    padding: 0 4%;
  }
  .cform .top h2 {
           line-height: 40px;
        font-size: 36px;
        letter-spacing: 2px;
  }
  .numbers p {
    margin: 0;
    margin-bottom: 86px;
    font-size: 24px;
  }
  .further {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 12vh;
  }
  .resources {
    position: absolute;
    right: 0;
    text-align: center;
    bottom: 0;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .mid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }
  .form {
                width: 72%;
  }
  input[type=submit]{
      transform: translateX(-14%);
  }
  .numbers {
      padding-right: 20px;
  }
}
/*# sourceMappingURL=main.css.map */