@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Playfair+Display:wght@700&family=Poppins:wght@400;600&display=swap);

* {
  margin: 0;
  padding: 0;
  font-family: "Space Mono", monospace;
  box-sizing: border-box;
}

html,
* {
  cursor: url("./assects/cursor.cur"), auto;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: black;
  background-size: cover;
  background-position: center;
}

.pp {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 17px;
  width: 290px;
  height: 345px;
  border-radius: 20px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.pp h2 {
  font-weight: 550;
  font-size: 41px;
  color: rgb(255, 255, 255);
}

.pp hr {
  margin-left: 7px;
  display: flex;
  position: relative;
  border: none;
  border-radius: 60px;
  width: 210px;
  height: 4px;
  margin-left: 20px;
  background-color: rgb(255, 255, 255);
}

.name {
  width: 270px;
  height: 40px;
  border: none;
  border-bottom: 1.5px solid white;
  outline: none;
  font-weight: 500;
  border-radius: 7px;
  background: transparent;
}

.mm {
  width: 270px;
  height: 90px;
  border: none;
  border-bottom: 1.5px solid white;
  outline: none;
  border-radius: 8px;
  background: transparent;
  color: white;
}

.pp input {
  color: white;
}

button {
  width: 125px;
  height: 38px;
  border: none;
  outline: none;
  border-radius: 50px;
  margin-top: 30px;
  background-color: rgb(255, 255, 255);
  margin-bottom: 3px;
}

.icon {
  position: absolute;
  bottom: 10px;
  width: 210px;
  display: flex;
  justify-content: space-between;
  margin-left: 40px;
}

.icon a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 40px;
  background: transparent;
  border: 2px solid white;
  border-radius: 50%;
  font-size: 25px;
  color: white;
  text-decoration: none;
}

.formobile {
  display: none;
}

-----------------------------------------------------------------
  .icon
  a:hover {
  color: gold;
}

.pp ::placeholder {
  color: rgb(221, 221, 221);
}

.name:hover {
  border: 1.7px solid white;
}

.mm:hover {
  border: 1.7px solid white;
}

button:hover {
  border: 2px solid black;
}

@media (max-width: 400px) {
  .icon {
    align-items: center;
    bottom: 46px;
  }
  .icon a {
    size: 20px;
  }
  .pushable {
    display: none;
  }
  .formobile {
    display: block;
  }
}
