/* ============================================================
   Custom Login Page Background
   Change the values below to customise the look of the
   Keycloak login screen.
   ============================================================ */

/* --- Option 1: Solid background colour --- */
body {
    background-color: #1a3c6e !important; /* ← change to any hex / rgb colour */
}

/* --- Option 2: Linear gradient (uncomment to use) ---
body {
    background: linear-gradient(135deg, #1a3c6e 0%, #0d1f3c 100%) !important;
}
*/

/* --- Option 3: Background image (uncomment to use) ---
   Put your image in: src/main/resources/theme/custom-login/login/resources/img/
body {
    background-image: url('../img/background.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}
*/

/* Optional: make the login card stand out on a dark background */
.login-pf body {
    /* background-color: #1a3c6e !important; */
    background: radial-gradient(circle at -10% 70%, #6bafe9 0%, #2d90ae 64%, #73e0f1 100%) no-repeat fixed;
}
.pf-v5-c-login__main{
    border-radius: 16px !important;
}
.pf-v5-c-login__main-header {
    border-top:none !important;
}

#kc-header-wrapper {
    color: #ffffff;
}

