body{
    background: gray;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#wrapper{
    background-color: black;
    width: 500px;
    margin: 250px auto;
    padding: 10px 20px 30px;
    font-size: 22px;
    border-radius: 10px;
    color: white;
}
h2{
    text-align: center;
    color: white;
}
input{
    font-size: 1em;
    width: 100%;
    border: 1px solid red;
    border-radius: 10px;
    box-shadow: 2px;
    box-sizing: border-box;
    margin: 15px 0px 25px;
    padding: 15px 15px;
    background-color: rgb(175, 175, 133);
}
input:active{
    border: none;
}

button{
    text-align: center;
    font-size: 22px;
    border-radius: 10px;
    box-shadow: 2px;
    box-sizing: border-box;
    margin-top: 25px;
    padding: 15px 25px;
    color:white;
    border: none;
    display: inline;
    background-color: rgb(175, 175, 133);
}
.btn{
    text-align: center;
}