@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
}

body {
  background: #e0ef8a;
  background: linear-gradient(45deg, #e0ef8a 0%, #d6a7b0 50%, #848fea 100%);
  background-size: cover;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card {
  min-width: 300px;
  max-width: 500px;
  min-height: 465px;
  border-radius: 4px;
  padding: 30px;
  backdrop-filter: blur(15px);
  box-shadow: 10px 10px 70px rgba(0, 0, 0, 0.2);
  border: solid 1px rgb(235, 235, 235);
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 3;
  margin: 3rem auto;
  display: flex;
  justify-content: center;
}

.circle1, .circle2 {
  width: 200px;
  height: 200px;
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.circle1 {
  top: 15%;
  right: 35%;
  background: tomato;
}

.circle2 {
  top: 63%;
  right: 53%;
  background: #7073ff;
}
footer {
    background-image: linear-gradient(
180deg
, #90a4ae 0%, #ffffff 100%);
padding-top: 1.5rem;
position: absolute;
width: 100%;
bottom: auto;
}
.forgot {
    margin: 1.5rem 0;
    display: block;
    text-align: center;
    color: #f74061;
}
.note_btn {
    min-width: 100px;
    border-radius: 25px;
    padding: 5px 10px 5px 38px;
    border: 1px solid transparent;
    background: #00aff0;
    color: #FFF;
    position: relative;
    margin: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 5;
    max-width: 160px;
}
.note_btn i {
    width: 34px;
    height: 34px;
    position: absolute;
    text-align: center;
    background: #fff;
    color: #00aff0;
    border-radius: 50%;
    font-size: 1.3rem;
    padding: 5px;
    top: -2px;
    left: -1px;
    border: 1.2px solid;
    transition: all 0.3s ease;
}
.log_card .form-group {
    height: 60px;
    margin-bottom: 0;
    position: relative;
}
.log_card .form-group input{
    width: 100%;
    border: 1px solid #b0bec5;
    height: 40px;
    padding: 5px 15px;border-bottom: 2px solid #b0bec5;
}
.log_card .form-group .text-danger {
    font-size: 0.8rem;
    text-align: right;
    display: block;
}
.log_card .form-group .lighting {
    position: absolute;
    height: 2px;
    width: 0;
    left: 0px;
    top: 39px;
    content: "";
    background-color: #4db6ac;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.log_card .form-group input:focus {

    outline: none;
}
.log_card .form-group input:focus ~ .lighting {
    width: 100%;
}