/* HIDE TITLE ONLY ON LOGIN PAGE */
#login h1 {
    display: none !important;
}

/* BIG LOGO ONLY ON LOGIN PAGE */
#login img[src="/static/img/logo.svg"] {
    border-radius: 50% !important;
    background: transparent !important;
    box-shadow: none !important;
    width: 170px !important;
    height: 170px !important;
    object-fit: contain !important;
    margin-bottom: 20px !important;
}

/* NORMAL SMALL LOGO EVERYWHERE ELSE */
img[src="/static/img/logo.svg"] {
    border-radius: 50% !important;
    background: transparent !important;
    box-shadow: none !important;
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
}

/* CENTER LOGIN CONTENT */
#login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* CLEAN INPUTS */
.input {
    border-radius: 6px !important;
}

/* CLEAN BUTTONS */
.button {
    border-radius: 6px !important;
}
