* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

.bg-img {
  /* Remove any existing background image settings */
  background-image: none;
  background-color: #88848c; /* Changed to your custom color */
  height: 100vh; /* Ensures it takes the full height of the viewport */
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  font-family: "Open Sans", cursive;
  text-align: center;
  padding: 60px 32px;
  width: 370px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: -1px 4px 28px 0px rgba(0, 0, 0, 0.75);
  margin-top: 50px;
}

.content header {
  color: #51455d;
  font-size: 33px;
  margin: 0 0 35px 0;
  font-family: 'Jost', sans-serif;
}

.field {
  position: relative;
  height: 45px;
  width: 100%;
  display: flex;
  background: rgba(255, 255, 255, 0.94);
}

.field span {
  color: #51455d;
  width: 40px;
  line-height: 45px;
}

.field input {
  height: 100%;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #51455d;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
}

.space {
  margin-top: 16px;
}

.show {
  position: absolute;
  right: 13px;
  font-size: 13px;
  font-weight: 700;
  color: #51455d;
  display: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}

.pass-key:valid ~ .show {
  display: block;
}

.pass {
  text-align: left;
  margin: 10px 0;
}

.pass a {
  color: white;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
}

.pass:hover a {
  text-decoration: underline;
}

.field input[type="submit"] {
  background: #3498db;
  border: 1px solid #2691d9;
  color: white;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}

.field input[type="submit"]:hover {
  background: #2691d9;
}

.login {
  color: white;
  margin: 20px 0;
  font-family: 'Roboto', sans-serif;
}

.links {
  display: flex;
  cursor: pointer;
  color: white;
  margin: 0 0 20px 0;
}

.facebook, .instagram {
  width: 100%;
  height: 45px;
  line-height: 45px;
  margin-left: 10px;
}

.facebook {
  margin-left: 0;
  background: #4267B2;
  border: 1px solid #3e61a8;
}

.instagram {
  background: #E1306C;
  border: 1px solid #df2060;
}

.facebook:hover {
  background: #3e61a8;
}

.instagram:hover {
  background: #df2060;
}

.links i {
  font-size: 17px;
}

i span {
  margin-left: 8px;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
}

.signup {
  font-size: 15px;
  color: white;
  font-family: 'Open Sans', sans-serif;
  margin-top:20px;
}

.signup a {
  color: #3498db;
  text-decoration: none;
  margin-top:20px;
}

.signup a:hover {
  text-decoration: underline;
}
