.p-login .loginLogo {
    height: 200px;
}

.p-login .loginContent {
    margin-top: 10vh;
}

.p-login .loginContent h1 {
    color: var(--color-primary);
    text-align: center;
    font-size: 40px;
    margin-bottom: 25px;
}

.p-login .loginBtn a {
    width: 250px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    background-color: #5865F2;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    fill: white;
    color: white;
}

.p-login .loginBtn a:hover,
.p-login .loginBtn a:focus {
    background-color: #2f3686;
}

.p-login .loginBtn .btnIcon {
    height: 30px;
    margin-right: 10px;
}

.p-login .loginInfobox {
    position: fixed;
    bottom: 30px;
    color: var(--color-primary);
    background-color: var(--color-bg);
    font-style: italic;
}

@media only screen and (max-width: 600px) {
    .p-login .loginLogo {
        height: 100px;
    }
}