body{
    overflow: hidden;
    background-image: linear-gradient(45deg, #fff, #c0c0c0);
}

@font-face{
    font-family: "CenturyPolice";
    src: url("../police/Century-Gothic.ttf") format("truetype");
}
*{
    font-family: 'CenturyPolice',"Trebuchet MS", "arial", sans-serif; 

}

.content{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-form{
    background-color: #f5f5f5;
    opacity: 0.95;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    padding: 50px;
}

h5{
    font-size: 0.7em;
    font-weight: 500;
    margin-bottom: 1em;
}

.text-center{
    width: 80%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-size: 2em;
}

.text-center p{
    text-align: center;
}

.login-form p{
    text-align: center;
}

.login-form p img{
    margin: 0 auto;
    margin: 10px;
}

.btn{
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    color: #333;
    background-color: #fcfcfc;
    border-color: #ddd;
    padding: 9px 15px;
    font-size: 14px;
    line-height: 1.4285715;
    border-radius: 3px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition-duration: 0.3s;
}

.btn:hover{
    background-color: #f5f5f5;
    border-color: #ddd;
    color: #333;
    
}

.btn p{
    margin: 0;

}