body{
    text-align: center;
    font-family: Arial, sans-serif;
    justify-content: center;
}

table{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

img{
    width: 175px;
}

#center{
    max-width: fit-content;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: absolute;
}

h1{
    margin-bottom: 5px;
    font-size: 27px;
}

input[type=text],input[type=password]{
    background-color : rgba(255, 255, 255, 0.4); 
    outline: none;
    width: 100%;
    padding: 12px 15px;
    margin: 2px 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    display: inline-block;
    border-radius: 20px;
    box-sizing: border-box;
}

input[type=text]:focus,input[type=password]:focus{
    background-color : rgba(255, 255, 255, 0.7); 
    border: 1px solid rgba(255, 255, 255, 0.8);
}

button {
    width: 300px;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #353537;
    padding: 11px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 1px 0px;
    border-radius: 20px;
}

button:hover {
    background-color: rgba(128, 128, 128, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.7);
}


@media screen and (max-width: 800px){
    h1{
        font-size:3.7vw;
    }

    i{
        font-size:1.8vw;
    }
}

@media screen and (max-width: 500px){
    h1{
        font-size:5.5vw;
    }

    i{
        font-size:3.3vw;
    }
}