body{
    background-image: url(https://cdn.corporatefinanceinstitute.com/assets/accounting.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: sans-serif;
    height: 100vh;
}

.wrapper{
    width: 400px;
    margin: 8% auto;
    padding: 20px;
    background-color: rgba(0,0,0,.3);
    box-shadow: 0 0 18px rgb(25,24,24);
    border-radius: 20px;
}

.heading{
    text-align: center;
    padding-top: 10px;
}

.heading h1{
    color: rgba(255, 0, 0, 0.795);
    font-size: 35px;
    font-weight: bold;
}

form{
    text-align: center;
}

form input, button{
    width: 300px;
    height: 40px;
    margin-bottom: 30px;
    border: none;
    padding-left: 10px;
    box-sizing: border-box;
    font-size: 15px;
    outline: none;
}

form i{
    position: absolute;
    left: 15px;
    color: #333;
    font-size: 17px;
    top: 2px;
}


form span{
    position: relative;
}
form input{
    padding-left: 40px;
    border-radius: 15px;
}

form button{
    background-color: red;
    letter-spacing: 1px;
    font-weight: bold;
    border-radius: 15px;
}

form button:hover{
    box-shadow: 2px 2px 5px #555;
    background-color: #fffb00;
    color: red;
}
.message{
    font-size: 20px;
    color: rgb(1, 1, 109);
    font-weight: bold;
}