* {
    margin: 0;
    padding: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    box-sizing: border-box;
}

Body {
    background-color: rgba(0, 0, 0, 0.916) ;
    color: white;
    text-align: center;
}

.block {
    margin: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    

}

span {
    color: rgb(49, 155, 75);
    padding-bottom: 10px;
    border-bottom-style: solid;
    border-bottom-width: 5px;
}

.input-box {
    margin:50px auto -65px auto ;
    background-color: white;
    width: 90%;
    max-width: 400px;
    padding:10px;
    border-radius: 10px;
    justify-content: space-around;
   }

.input-box img {
    width: 30px;
    margin-bottom: -5px;
}

.input-box input {
    outline: 0;
    border: 0;
    font-size: 25px;
    padding: 3px;
}

button {

    margin-top: -390px;
    padding:10px 70px 20px 70px;
    background-color:  rgb(49, 155, 75);
    border-radius: 10px ;
    text-align: center;
    color: white;
    font-size: 21px;
    outline: 0;
    border: 0;
   
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
}
button img  {
    width: 28px;
    margin-bottom: -15px;
    margin-right:10px;
}


