/*
  This CSS file is meant to be customized by deployments
  and is intentionally left empty. Any style that is added
  here should override the default styles in the application.
 # ORIGINAL DEFAULT LOCATION:  cas-server-support-thymeleaf/static/css/custom.css
 */



body, .mdc-top-app-bar, .cas-footer{
  background: linear-gradient(135deg, rgba(15, 35, 132, 1) 0%, rgba(66, 69, 87, 1) 100%) !important;
}
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.0) inset !important;
  transition: background-color 100000s ease-in-out 0s;
}

.mdc-card{
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.bgimage{
  background-image: url('/cas/images/shutterstock_1918457033-lowered-b61485481e334ee31a1f5036c7830a05.jpg');
  /*background-image: url('https://www.epias.com.tr/wp-content/uploads/2025/01/shutterstock_1918457033.jpg');*/
/*  !*background-image: url('https://www.epias.com.tr/wp-content/uploads/2019/01/eym2.jpg');*!*/
/*  !*background-image: url('https://www.epias.com.tr/wp-content/uploads/2019/01/slide4-1.jpg');*!*/
/*  !*background-image: url('https://www.epias.com.tr/wp-content/uploads/2019/01/slide5-1.jpg');*!*/
/*  !*background-image: url('https://www.epias.com.tr/wp-content/uploads/2019/01/slide7-1.jpg');*!*/
  position: relative;
  overflow: hidden;
}

/* Slides container */
.bgimage .slideshow-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
}

/* Each slide image */
.bgimage .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.bgimage .slide.active {
  opacity: 1;
  z-index: 1;
}


ul#langSelection{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

ul#langSelection li:first-child {
margin-right:.5em;
}


@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 960px;
  }
}

.generate-password,#password-strength-msg{
  display: none !important;
}


.strengthProgressBar{
  background: #414458;
}
#progress-strength-indicator{
  line-height: 1.5em;
  background: rgb(16, 36, 131);
  color: white;
  border-radius: .5em;
  transition:
    flex 0.5s ease,
    background-color 0.5s ease,
    width  0.5s ease,
    color 0.5s ease;
}
.mdc-linear-progress{
  display: none;
}

#password-strength-notes>div{
  margin-bottom: .5em;}



#availableApps{
  list-style: none;           /* Remove bullets */
  padding: 0;                 /* Remove default padding */
  margin: 0 auto;             /* Center the whole UL horizontally */
  display: flex;              /* Arrange children horizontally */
  justify-content: center;    /* Center the items inside the UL */
  gap: 1em;                  /* Space between buttons */
  flex-wrap: wrap;           /* Enable wrapping to new lines */
  max-width: 600px;          /* Optional: limit max width to control wrapping */
}

#availableApps li{

}

#availableApps li a{
  display: inline-flex;           /* flex for centering */
  justify-content: center;
  align-items: center;
  width: 80px;                   /* fixed width */
  height: 80px;                  /* fixed height */
  background-color: #007bff;
  color: white;
  border-radius: 50%;            /* makes it a circle */
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  padding: 0;                   /* no padding needed */
  text-align: center;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease,opacity 0.2s ease;
  opacity: 1;
}



#availableApps li a:hover {
  transform: scale(1.05);
  opacity: 0.7;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


#imageQRCode{
  width:230px;
  height:230px;
}
