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

body{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(#377bbf, #c33729);
}

.wrapper{
  position: relative;
  height: 500px;
  width: 400px;
  background-color: transparent;
  backdrop-filter: blur(40px);
  /* background-color: rgba(29, 1, 107, 0.4); */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 2px 2px 5px 5px rgb(218, 112, 112);
  box-shadow: 2px 2px 5px 5px linear-gradient(#377bbf, #c33729);
}


.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

h1 {
color: white;
font-size: 30px;
width: 100%;
margin-bottom: 0;
}

.logo{
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img{
  width: 100px;
}

.input-group{
  position: relative;
  margin: 30px 0;
  border: none;
  border-bottom: 1px solid rgb(206, 216, 235);
  outline: none;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: black;
}

.input-group label{
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  color: #fff;
}

.input-group input{
  width: 320px;
  height: 40px;
  color: #fff;
  background: transparent;
  font-size: 16px;
  padding: 0 5px;
  border: none;
  outline: none;
}

.input-group input:focus ~ label,
.input-group input:valid ~ label{
  top: -5px;
}

button{
  position: relative;
  border: none;
  border-radius: 5px;
  background-color: #377bbf;
  box-shadow: 2px 2px 10px #82b7ec;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  height: 40px;
  opacity: 0.6;
  color: #fff;
  /* background: transparent; */
}

.alert-message {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%,-150%);
  border-radius: 6px;
  padding: 10px 20px;
  width: 450px;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #1FB6FF;
}

.alert-message span.close {
  display: inline-block;
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.65);
  content: "\00d7";
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  right: 5px;
  top: 3px;
  cursor: pointer;
}

.alert-message span.close.hover {
  color: white;
}

.alert-message.active   { transform: translate(-50%,0); }

.alert-message.primary  { background-color: #1FB6FF; }
.alert-message.positive { background-color: #13CE66; }
.alert-message.negative { background-color: #FF4949; }
.alert-message.warning  { background-color: #FFC82C; } 