*{
    margin: 0;
    padding: 0;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    box-sizing: border-box;
}

body
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.wrapper
{
  width: 420px;
  background:transparent;
  border: 2px solid rgba(255,255,255, .2);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px;
  color: rgb(255, 255, 255);
  border-radius: 10px ;
  padding: 30px 40px;
}

.wrapper h1
{
    font-size: 36px;
    text-align: center;
}

.wrapper .input-box
{
    width: 100%;
    height: 50px;
    position: relative;
    margin: 30px  0px;
}

.input-box input
{
    width: 100%;
    height: 100%;
    background:transparent;
    border: 2px solid rgba(255,255,255,.2);
    border-radius: 40px;
    font-size: 16px;
    color: white;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder
{
    color: rgb(255, 255, 255);
}

#i 
{
    position: absolute;
    right: 20px;
    top:30%;
    transform: translate(-50%);
    font-size: 20px;
    color: rgb(255, 255, 255);
}

.remember-forget
{
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin: 15px 0 15px;  
}

.forgot
{
    accent-color: rgb(255, 255, 255);
    margin-right: 3px;
}

a
{
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.btn
{
    margin-top: 20px;
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px ;
    cursor:pointer;
    font-size: 16px;
    color: #ffffff;
    font-weight:bold;
    background:transparent;
    backdrop-filter: 90px;
}

.btn:hover
{
    transform: scale(1.1);
    transition: 0.7s;
}

.regester-link
{
    padding-top: 20px;
    text-align: center;
    margin: 20px 0 15px;
}

.regester-link p a 
{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight:700;
}

.regester-link p a:hover
{
    text-decoration: underline;
}