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

body{
    font-family: 'Poppins', sans-serif;
    background: #1488CC;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2B32B2, #1488CC);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2B32B2, #1488CC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}

.wave{
    z-index: -1;
}

#wavegradient{
    fill: url(#my-cool-gradient) #FFF;
}

.container{
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 7rem;
}

.image img{
    width: 500px;
}

.avatar{
    width: 100px;
}


form{
    width: 360px;
}

form h2{
    font-size: 2.9rem;
    margin: 15px 0;
    color: #fff;
}

.input-div{
    position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    padding: 5px 0;
    border-bottom: 2px solid #fff;
}

.input-div::after, .input-div::before{
    content: '';
    position: absolute;
    bottom: -2px;
    width: 50%;
    height: 2px;
    background-color: #fff;
    transition: .3s;
}

.input-div::after{
    right: 50%;
}

.input-div::before{
    left: 50%;
}

.input-div.focus .i i{
    color: #ebf8ff;
}

.input-div.focus div h5{
    top: -5px;
    font-size: 15px;
    color: #ebf8ff;
}

.input-div.focus::after, .input-div.focus::before{
    width: 50%;
}

.input-div.one{
    margin-top: 0;
}

.input-div.two{
    margin-bottom: 4px;
}

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

.i i{
    color: #fff;
    transition: .3s;
}

.input-div > div{
    position: relative;
    height: 45px;
}

.input-div >div h5{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 18px;
    transition: .3s;
}

.input{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
    outline: none;
    background: none;
    padding: 0.5rem 0.7rem;
    font-size: 1rem;
    color: #fff;
}

a{
    display: block;
    text-align: right;
    text-decoration: none;
    color: #999;
    font-size: 0.9rem;
    transition: .3s;
}

a:hover{
    color: #bee3f8;
}