@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: url(firmaresim.png);
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 0 10px;
}

body .before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
 
  background-position: center;
  background-size: cover;
}

.wrapper {
  background-color: transparent;
  width: 330px;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  border: 2px solid black;
  backdrop-filter: blur(35px);
 
}

form {
  display: flex;
  flex-direction: column;
}
.h2 {
    padding-left: -50px;
    font-size: 2rem;
    margin-bottom: 20px;
    color: black;
  }
  
  .input-field {
    position: relative;
    border-bottom: 2px solid black;
    margin: 10px 0;
  }
  
  .input-field label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: black;
    font-size: 16px;
    pointer-events: none;
    transition: 0.15s ease;
  }
  
  .input-field input {
    width: 100%;
    height: 20px;
    background: transparent;
    border: none;
    outline: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight:bold;
    font-size: 16px;
    color: black;
  }
  
.placeholder{
  color: aliceblue;
}


  .input-field input:focus~label,
  .input-field input:valid~label {
    font-size: 0.8rem;
    top: 10px;
    transform: translateY(-120%);
  }
  
  .forget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1px 0 1px 0;
    color: black;
  }
  
  #remember {
    accent-color: black;
   align-items:left;
  }
  
  .forget label {
    display: flex;
    align-items: center;
  }
  
  .forget label p {
    margin-left: 2px;
  }
  
  .wrapper a {
    color: black;
    text-decoration: none;
  }
  
  .wrapper a:hover {
    text-decoration: underline;
  }
  button {
    margin-top: 10px;
    background:blueviolet;
    color: #000;
    font-weight: 600;
    border: none;
    padding: 10px 114px;
    font-size: 1.7em;
    cursor: pointer;
    border-radius: 8px;
    border: 0px srgba(212, 212, 252, 0.5);
    transition: 0.3s ease;
  }
  
  button:hover {
    color: beige;
    border-color: blue;
    background: rgba(9, 9, 91, 0.5);
  }
  
  register {
    text-align: center;
    margin-top: 5px;
    color: black;
  }  