body{
    background-color: #8c8c8c;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

label{
    color: white;
}

h3{
    color: white;
}

#lbPass{
    padding-top: 20px;
}

.container{
    display: grid;
    transform: translateY(30%);
    grid-template-columns: 2fr;
    max-width: 500px;
}

.container img{
    justify-self: center;
    size: 100%;
    margin-bottom: 25px;
}

.loginContent{
    border-top-style: groove;
    border-color: black;
    padding-top: 25px;
    justify-content: space-around;
    text-align: center;
}

#btnLogin{
    background-color: red;
    border-color: red;
}

#btnLogin:hover {
    color: rgb(255, 255, 255) !important;
    box-shadow: 0 4px 16px rgb(255, 255, 255);
    transition: all 0.2s ease;
}

#txtUserMail:focus, #txtUserMail:hover{
    outline: none;
    border-color: rgb(245, 60, 60);
    background-color: #fff;
    box-shadow: 0 0 0 5px rgba(247, 24, 24, 0.3);
}

#txtUserPass:focus, #txtUserPass:hover{
    outline: none;
    border-color: rgb(245, 60, 60);
    background-color: #fff;
    box-shadow: 0 0 0 5px rgba(247, 24, 24, 0.3);
}