@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.logo {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.logo img {
  max-width: 100px; 
  height: auto;
}

.login-wrapper {
  min-height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.content {
  width: 390px;
  padding: 40px 30px;
  background: #f1d5f1;
  border-radius: 10px;
  box-shadow: -3px -3px 7px #ffffffa8,
              2px 2px 5px rgba(153, 73, 153, 0.15);
}

.content .text {
  text-align: center;  
  font-weight: 600;
  margin-bottom: 35px;
  color: #6d346d;
}

.field {
  height: 50px;
  width: 100%;
  display: flex;
  position: relative;
}

.field:nth-child(2) {
  margin-top: 20px;
}

.field input {
  height: 100%;
  width: 100%;
  padding-left: 35px;
  outline: none;
  border: none;
  font-size: 18px;
  background: #f5e3f5;
  color: #6d346d;
  border-radius: 25px;
  box-shadow: inset 2px 2px 5px #cfa0cf,
              inset -5px -5px 10px #ffffffa0;
}

.field input:focus {
  box-shadow: inset 1px 1px 2px #cfa0cf,
              inset -1px -1px 2px #ffffffa0;
}

.field span {
  left: 15px;
  position: absolute;
  color: #e24471;
  /* width: 50px; */
  line-height: 50px;
}

.field label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 45px;
  pointer-events: none;
  color: #8a4b8a;
}

.field input:valid ~ label {
  opacity: 0;
}

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

.forgot-pass a {
  font-size: 16px;
  color: #de93de;
  text-decoration: none;
}

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

button {
  margin: 15px 0;
  width: 100%;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  font-weight: 600;
  background: #de93de;
  border-radius: 25px;
  border: none;
  outline: none;
  cursor: pointer;
  color: white;
  box-shadow: 2px 2px 5px #c57ac5,
              -5px -5px 10px #ffffff;
}

button:focus {
  color: #6d346d;
  box-shadow: inset 2px 2px 5px #c57ac5,
              inset -5px -5px 10px #ffffff;
}

.sign-up {
  margin: 10px 0;
  color: #6d346d;
  font-size: 16px;
}

.sign-up a {
  color: #de93de;
  text-decoration: none;
}

.sign-up a:hover {
  text-decoration: underline;
}
