body {
    display: flex;
    height: 100vh;

    justify-content: center;
    background-image: url('/images/login-background.webp');
    font-family: 'Fira Sans Extra Condensed', sans-serif;
}

.loginCard{
    position: relative;
    width: 40vw;
    height: 570px;
    top: 30px;

    padding: 1em;

    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(209, 213, 219, 0.3);
}

.titleCard {
    text-align: center;
    font-size: 30px;
}

.imgCard {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.imgCard img {
    width: 18vw;
}

.loginCard form{
    color: #2d2d2d;
}

.form-control{
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.800);
    border-radius: 12px;
    border: 1px solid rgba(209, 213, 219, 0.400);
}

.btn-login {
    display: block;
    width: 20vw;
    margin-top: 20px;
    padding: 0.5em 1em;

    color: #ffffff;
    
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    background-color: rgba(130, 130, 130, 0.600);
    border-radius: 12px;
    border: 1px solid rgba(209, 213, 219, 0.400);
}

.btn-login:hover {
    color: #696969;
    background-color: rgba(255, 255, 255, 0.700);
}

.form-check-input{
    width: 20px;
    height: 20px;
}


/*
    Messages QR
*/

.msgWindow{
    padding: 1em;
    
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.6em;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.1px);
}

.msgWindowParts{
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.btnProfile{
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;

    width: 9em;
    height: 2.5em;
    padding: 0.5em;

    background: rgba(242, 242, 242, 0.7);
    border-radius: 0.5em;
    backdrop-filter: blur(5.1px);
    border: 1px solid #5c878a69;
    
    text-decoration: none;
    color: #5c878a;
    font-size: 16px;
}

.btnProfile:hover{
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
}

@media only screen and (max-width: 600px) {
    .loginCard{
        width: 80vw;
        height: 500px;
    }

    .titleCard {
        font-size: 24px;
    } 
    
    .imgCard {
        margin-bottom: 5px;
    }
    
    .imgCard img {
        width: 50vw;
    }

    .btn-login {
        width: 50vw;
        margin-top: 10px;
    }
}