@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");

*{
    margin: 0;
    padding: 0;
    user-select: none;
}

html, body{
    background: #fafafa;
}

.text-primary{
    color: #2a377d !important;
}

.text-error{
    font-size: 1.05rem;
    font-weight: 600;
    color: #6b0606;
}

.center{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.box{
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.box > img{
    width: 125px;
    border-radius: 50%;
    margin-bottom: 25px;
}

.copyright{
    display: block;
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    text-align: center;
    color: #727272;
    font-size: 0.90rem;
}

.loginForm{
    background: white;
    border-radius: 5px;
    border: 1px solid black;
    padding: 4px 5px;
    margin-bottom: 5px;
    width: 100%;
}

.loginbutton{
    margin-top: 10px;
    background: #c3c3c3;
    font-weight: 500;
    text-transform: uppercase;
    color: black;
}

.loginbutton:hover{
    background: #d3d3d3;
}

@media (max-width: 725px) {
    .copyright{
        bottom: 35px;
        font-size: 0.75rem; 
    }
}