body{
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  overflow: hidden; /* Hide scrollbars */
}

body{
  background: url('/img/login/backgroud-img.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1; 
  align-items: center;
  min-height: 100vh; 
  display: flex; 
  flex-direction: column; 
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity to make it darker */
  z-index: 0; /* Make sure it's behind other content */
  pointer-events: none; /* Allow clicks to pass through the overlay */
}

.content{
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.8600000143051147);
  border-radius: 4px;
  padding: 50px 20px 20px 20px;
  min-width: 350px;
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.2);
}

.content h1{
  margin: 10px 0 20px;
  text-align: center;
  font-size: 34px;
}

label{
  display: block;
  padding: 10px 0;
}

input{
  display: block;
  margin-top: 8px;
  padding: 10px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid silver;
  background: white;
  outline: none;
  width: calc(100% - 44px);
  border: 1px solid rgba(33,72,192,1);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

input:focus{
  border-color: black;
}

.response{
  padding: 4px;
  color: crimson;
  font-weight: bold;
  text-align: center;
  margin-bottom: 7px;
}

#btnLogin{
  width: 100%;
  padding: 14px;
  background: var(--btn-primary);
  color: white;
  margin: 30px 0 5px;
  border-radius: 4px;
  border: 2px solid var(--btn-primary);
  font-size: 16px;
  cursor: pointer;
  outline: none;
}

#btnLogin:hover{
  background: var(--btn-secondary);
  border-color: var(--btn-secondary);
}
#btnLogin:active{
  background: var(--btn-tertiary);
  border-color: var(--btn-tertiary);
}

.blur{
  filter: blur(5px);
  -webkit-filter: blur(5px);
  background: rgba(0,0,0,0.1) !important;
}

.title{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logo {
   width: 100px;
   height: 100px;
   margin: 0px;
   padding: 0px;
}

.header {
  margin-bottom:auto
}

.footer {
  margin-top:auto; 
  margin-bottom: -20px;
}

.wave {
  width: 100%;
}

::-webkit-input-placeholder { /* Edge */
  font-size: 9px;
  color: #2148C0;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-size: 9px;
  color: #2148C0;
}

::placeholder {
  font-size: 9px;
  color: #2148C0;
}

.input-icons i {
  position: absolute;
  padding-top: 10px;
}

.input-icons {
  width: 100%;
  margin-bottom: 10px;
}

.icon {
  margin-left: 10px;
  margin-top: 3px;
}

.input-field {
  padding-left: 30px;
}

.fa-user {
  color: #2148C0;
}

.fa-lock {
  color: #2148C0;
}

.trademark {
  font-weight: bold;
  margin-top: 12px;
  font-size: 22px;
}

.trademark > span.companyName {
  color: #233591;
}

.trademark > span.envName {
  color: crimson;
}

.hyperlinks{
  display: flex;
  justify-content: space-evenly;
  align-items: right;
}

.hyperlinksLoginPage {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-link {
  margin-right: auto; /* Pushes the first link to the left */
}

.right-links {
  display: flex;
  align-items: center;
}

.right-links a {
  margin-left: 0px; /* Add spacing between the right links */
}

.right-links span {
  margin: 0 5px; /* Add spacing around the divider */
}


a {
  font-size: 11px;
}
