.pageCover {
    background: url("https://static-de.moveon4.com/utcluj/images/logos_EUt+UTCN_en1.png") no-repeat scroll 0 0px rgba(0, 0, 0, 0);
	background-size: 30%;
    margin-top: 10px;
}




/* Unify typography */
.loginBar,
.loginBar span,
.loginBar a {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  color: #273e83;
}

/* Push logout right */
.loginBar [kind="logout"],
.loginBar a[kind="logout"] {
  margin-left: auto;
}

.loginBar {
  display: flex;
  align-items: center;
  gap: 1px;
}

/* 🔽 Place these after the rules above */

/* ===== Logout button (normal) ===== */
.loginBar a.button[kind="logout"]{
  display: inline-flex;                 /* reliable box model */
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-weight: bold;

  /* Clear any framework backgrounds/gradients/shorthands */
  background: none;
  background-image: none;
  background-color: #ffffff;            /* white bg */

  color: #c62828;                       /* red text */
  border: 1px solid #c62828;            /* red border */
  text-decoration: none;
  padding: 6px 12px;
}

/* ===== Logout button (hover) ===== */
.loginBar a.button[kind="logout"]:hover{
  background: none;
  background-image: none;
  background-color: #c62828 !important;
  color: #ffffff;
  border-color: #c62828;
}






.wizardTitleBar {
    background: #273e83;
    color: #ffffff;
}


.formContainer fieldset > legend, .searchBox .searchHeader {
    color: #ffffff;
    background: #273e83;
}

/* --------------Language---------------- */

#languageButtons li,
#languageButtons li a {

    background-color: #ffffff;   /* white background */
    color: #273e83 !important;   /* UTCN blue text */
    cursor: pointer;
    line-height: 1.3;
    font-size: 14px;
}

/* ACTIVE language item (the current selected one) */
#languageButtons li.currentLanguage {
    background-color: #273e83 !important;  /* blue bg */
    color: #ffffff !important;             /* white text */
    border-color: #273e83 !important;
    border: 1px solid #273e83;
    cursor: default;
}




/* --------------Progress bar---------------- */
.blue span {
    background-color: #bababa;
}
#progressLabel {
    color: #48a758;
}



/* -----------------Side MENU------------------- */
.vMenu > a > li {
    background-color: #ffffff;
    border-bottom: 1px solid #f5f6f8;
    color: #273e83;
    border: 1px solid #273e83 !important;
    border-radius: 4px !important;
}

/* Hover / focus to match button behavior */
.vMenu > a > li:hover,
.vMenu li > a:hover,
.vMenu a:hover,
.vMenu > a > li:focus,
.vMenu li > a:focus,
.vMenu a:focus {
  background-color: #273e83 !important; /* your chosen hover tone */
  border-color: #273e83 !important;
  color: #ffffff !important;
  outline: 2px solid rgba(255,255,255,0.25);
  outline-offset: 2px;
}

/* Active/current menu item (if MoveON adds .active or .selected) */
.vMenu .active > a,
.vMenu .selected > a,
.vMenu a.active,
.vMenu > a > li.active,
.vMenu a.selected {
  background-color: #ffffff !important; /* slightly darker to indicate active */
  border-color: #273e83 !important;
    border: 3px solid #273e83 !important;
    border-radius: 4px !important;
  color: #273e83 !important;
}




/* ---------------Document buttons--------------------------- */

/* ==========================
   File input custom styling
   ========================== */

/* Base colors (default state) */
input[type=file]::before {
  /* KEEP existing settings … only adjust colors */
  background: #ffffff;                /* white background */
  color: #273e83;                     /* blue text */
  border: 1px solid #273e83;          /* blue border */
}

/* Keep the "No file chosen" pill white and subtle unless hovered/active */
input[type=file]::after {
  background: #ffffff;
  color: #464547;
  /* other existing properties unchanged */
}

/* Hover on the whole input: turn the "Choose File" button blue */
input[type=file]:hover::before,
input[type=file]:focus::before,
input[type=file]:active::before {
  background: #273e83;                /* blue background */
  color: #ffffff;                     /* white text */
  border-color: #273e83;
}

/* Optional: on hover/active, also tint the "No file chosen" pill border/text */
input[type=file]:hover::after,
input[type=file]:focus::after,
input[type=file]:active::after {
  color: #273e83;                     /* blue text to signal interaction */
  /* keep background white for contrast */
}

/* Accessibility: show focus ring on keyboard focus */
input[type=file]:focus {
  outline: 2px solid rgba(39, 62, 131, 0.35); /* subtle blue glow */
  outline-offset: 2px;
}

/* Ensure the pseudo-elements position correctly relative to the input */
input[type=file] {
  position: relative;                 /* IMPORTANT for ::before/::after absolute positioning */
  z-index: 1;                         /* keep input above background layers if needed */
}






/* ===-------- Buttons------------------*/

/* Base normalization for MoveON wizard buttons */
button[kind],
.wizardNavigation > button[kind] {
  font-family: 'Noto Sans', sans-serif !important;
  border: 1px solid #273e83 !important;
  border-radius: 4px !important;
  line-height: 38px !important;   /* consistent height */
  padding: 0 18px !important;     /* horizontal spacing */
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;

  /* remove legacy icon backgrounds */
  background-image: none !important;
  background-repeat: no-repeat;
  background-position: center left;
}

/* Primary color + white text for ALL wizard buttons */
button[kind="previous_button"],
button[kind="next_button"],
button[kind="save_button"],
button[kind="submit_button"] {
  background-color: #273e83 !important;  /* UTCN blue */
  color: #ffffff !important;             /* white text */
  border-color: #273e83 !important;
}

/* Hover / focus (darker) */
button[kind="previous_button"]:hover,
button[kind="next_button"]:hover,
button[kind="save_button"]:hover,
button[kind="submit_button"]:hover,
button[kind="previous_button"]:focus,
button[kind="next_button"]:focus,
button[kind="save_button"]:focus,
button[kind="submit_button"]:focus {
  background-color: #5983bd !important;  /* your current hover tone */
  border-color: #5983bd !important;
  color: #ffffff !important;
  outline: 2px solid rgba(255,255,255,0.25);
  outline-offset: 2px;
}

/* Optional: tidy spacing in the wizard nav bar */
.wizardNavigation > button[kind] {
  margin-right: 8px;   /* small gap between buttons */
  /* max-width: 170px;  uncomment to cap width consistently */
  /* width: 100%;       uncomment if you want equal-width buttons */
}



/* ---------------Footer with the same width and centered--------------------------- */
.pageFooter,
.pageFooter *,
.pageFooter a,
.pageFooter span,
.pageFooter p {
    color: #ffffff !important;
}

.pageFooter {
    background: #273e83;      /* set your desired footer color */
    width: 100%;
    max-width: 1110px;        /* match .pageContent exactly */
    margin: 0 auto;           /* center it */
    text-align: center;
    box-sizing: border-box;
}

.appDetails {
    padding-top: 10px;
}