@charset "UTF-8";

/*
 * Fons login (estil Personal/Poda: imatge a pantalla completa + vel).
 * Canvia --fons-login per alternar entre imatges de gats (Unsplash, llicència lliure).
 */
:root {
    --fons-login: url("https://images.unsplash.com/photo-1765481078996-3564f872dc7b?auto=format&fit=crop&w=1920&q=80");
    /* Alternatives:
    --fons-login: url("https://images.unsplash.com/photo-1749026797208-b9affee1098a?auto=format&fit=crop&w=1920&q=80");
    --fons-login: url("https://images.unsplash.com/photo-1759217801394-3f73930dc6bb?auto=format&fit=crop&w=1920&q=80");
    --fons-login: url("https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?auto=format&fit=crop&w=1920&q=80");
    */
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100vh;
}

body {
    position: relative;
    background-image: var(--fons-login);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(98, 140, 36, 0.55) 0%,
        rgba(30, 50, 15, 0.45) 50%,
        rgba(0, 0, 0, 0.35) 100%
    );
    z-index: -1;
    pointer-events: none;
}

.roigAju { color: #C20F2F; }

#login-card {
    margin-top: 100px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#login input {
    font-weight: 300;
}

#login-card a {
    color: #628c24;
}

#login-card .btn-dark {
    background-color: #628c24;
    border-color: #4a6a1a;
}

#login-card .btn-dark:hover {
    background-color: #4a6a1a;
    border-color: #3a5514;
}
