@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-style: no rmal;
}

.text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 60px;
}

.text h1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}

.text h1 span {
  color: hsl(223, 87%, 63%);
}

.text h2 {
  color: rgb(171, 170, 168);
  font-size: 38px;
  font-weight: 250;
  margin-bottom: 10px;
}

.text h2 span {
  color: black;
  font-weight: 600;
}

.text p {
  font-weight: 300;
}

form {
  display: flex;
  align-items: flex-start; 
  justify-content: center;
  gap: 20px;
  margin-top: 0px;
  margin-bottom: 50px;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  width: 23%; 
}

.input-wrapper input {
  font-size: 20px;
  border-radius: 30px;
  padding: 10px 20px;
  border: 1px solid hsl(213, 100%, 88%);
  outline: none;
}

input.error-border {
  border: 1px solid red;
}

#error {
  color: rgb(219, 69, 69);
  font-size: 9px;
  margin-top: 4px;
  margin-left: 25px;
}

::placeholder {
  color: rgb(190, 190, 190);
  font-size: 15px;
  font-weight: 300;
}

form button {
  background-color: hsl(223, 87%, 63%);
  padding: 13px;
  border-radius: 30px;
  color: white;
  width: 10%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 6px rgb(86, 125, 251);
}

form button:hover {
  background-color: rgb(123, 150, 236);
}

.img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.img img {
  width: 500px;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  color: hsl(223, 87%, 63%);
}

.social-icons a {
  margin: 13px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

P {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 300;
}
