/* Custom styles for login.ftl */

/* Header styles */

.login-pf body {
    background:  #f8f9fa;
    background-size: cover;
    height: 100%;
}
.card-pf {
    margin: 0 auto;
    box-shadow: var(--pf-global--BoxShadow--lg);
    padding: 0 20px;
    max-width: 500px;
    border-top: 4px solid;
   background:  #fff;
    border-color: #c92727;
}
a, a:link, a:visited {
    font-size: 0.7em;
    color: #000;
    background: inherit;
}
/* url("../img/keycloak-bg.png") no-repeat center center fixed*/
#kc-header {
    text-align: center;
    margin-bottom: 20px;
}

.pf-c-button.pf-m-primary {
    color: var(--pf-c-button--m-primary--Color);
    background-color: #c92727;
}

/* Logo styles */
#kc-logo {
 
 background-image: url("../img/kb-logo.png"); 
 height: 100px; 
 width: 150px;
 background-size: contain;
 background-repeat: no-repeat;
 
 
}

#kc-logo,
#company-name {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#kc-logo.show,
#company-name.show {
    opacity: 1;
}
 #kc-header-wrapper {
  background-color: #f8f8f8; /* Light background color */
  padding: 20px; /* Padding for content inside the wrapper */
  

  /* Center the content */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Company Name Styles */
#kc-header-wrapper .company-name {
  font-family: 'Helvetica', sans-serif; /* Choose an elegant font */
  font-size: 24px; /* Adjust the font size */
  font-weight: bold; /* Make it bold for emphasis */
  color: #333; /* Dark text color */
  text-transform: uppercase; /* Uppercase text */
}


/* Form wrapper styles */
#kc-form-wrapper {
    max-width: 400px; /* Adjust the max-width as needed */
    margin: 0 auto;
    background:  #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Form input styles */
.kc-form-group {
    margin-bottom: 15px;
}

.kc-label {
    font-weight: bold;
}

.kc-input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

/* Form buttons styles */
#kc-form-buttons {
    margin-top: 20px;
}

.kc-button {
    width: 100%;
    padding: 10px;
    background-color: #007bff; /* Adjust the background color as needed */
    color: #ffffff; /* Adjust the text color as needed */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Social providers section styles */
#kc-social-providers {
    margin-top: 20px;
}

.kc-form-social-account-list {
    list-style: none;
    padding: 0;
}

.kc-form-social-account-list-button {
    display: block;
    text-decoration: none;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f0f0f0; /* Adjust the background color as needed */
    border-radius: 5px;
    color: #333333; /* Adjust the text color as needed */
}

/* Additional styles */
/* Add your additional styles here */

 

 #myModal {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      margin: 20px;
    }

  #myModal  section {
      margin-bottom: 20px;
    }

   #myModal h2 {
      color: #333;
      border-bottom: 2px solid #333;
      padding-bottom: 5px;
    }

   #myModal h3 {
      color: #555;
      margin-top: 20px;
    }

   #myModal p {
      color: #777;
      margin-bottom: 10px;
    }

#kc-locale-dropdown .pf-c-dropdown__menu {
    display: flex; /* Use flexbox to lay out children horizontally */
    flex-direction: row; /* Ensure the direction is row */
    padding: 0; /* Remove default padding of ul */
    list-style-type: none; /* Remove bullet points */
}

#kc-locale-dropdown .pf-c-dropdown__menu-item {
    padding: 10px; /* Adjust padding as needed */
    text-decoration: none; /* Remove underline from links */
}

#kc-form {
    padding-top: 20px; /* Adds 20px of padding above the form */
}

.current-locale-class {
    text-decoration: underline !important;
	font-weight: bold !important;
    /* Add any additional styling you need here */
}
 