.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 95px);
    background-color: white;
    overflow: auto;
  }

  .oracle-login-page .login-container, .ldap-login-page .login-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 110px);
    background-color: white;
  }
  
  /* Login box styling */
  .login-box {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
    border: 1px solid #ddd;
  }

  @media screen and (min-height: 700px) {
      .login-box {
          transform: translateY(calc(-10vh));
      }
  }
  
  /* Login title */
  .login-box h2 {
    text-align: center;
    margin-bottom: 10px;
    color: rgba(70, 90, 126, 0.9);
  }
  
  /* Instruction text */
  .instruction-text {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
    color: rgba(70, 90, 126, 0.9)
  }
  
  /* Input group styling */
  .input-group {
    margin-bottom: 15px;
  }
  
  /* Input label styling */
  .input-group label {
    display: block;
    margin-bottom: 5px;
    color: rgba(70, 90, 126, 0.9);
  }
  
  /* Input field styling */
  .input-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid rgba(70, 90, 126, 0.4);
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  /* Button styling */
  .login-button {
    width: 100%;
    padding: 10px;
    background-color: #4A74CA;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
/* Button hover effect */
.login-button:hover {
background-color: rgba(70, 90, 126, 1);
}

/* Links */
.links {
text-align: center;
margin-top: 15px;
}

/* Forgot password and sign up links */
.forgot-password,
.signup {
display: block;
font-size: 12px;
color: rgba(70, 90, 126, 0.9);
text-decoration: none;
margin-bottom: 5px;
}

.signup {
margin-top: 5px;
}

.forgot-password:hover,
.signup:hover {
text-decoration: underline;
}

.oracle-login-page .login-box h1, .ldap-login-page .login-box h1{
text-align: center;
margin-bottom: 10px;
color: rgba(70, 90, 126, 0.9);
}


/* Adjust radio button alignment */
.ldap-login-page .input-group label,
.ldap-login-page .input-group span {
    display: inline-block;
    vertical-align: middle;
	padding-top: 10px;
}

.ldap-login-page .input-group input[type="radio"] {
    margin-right: 8px; /* Add space between the radio button and label */
    vertical-align: middle;
	position: absolute;
}

/* Ensure the input group for radios does not add extra margin */
.ldap-login-page .input-group {
    margin-bottom: 5px;
}

#login-heading
{
  padding-bottom: 10px;
}


.subText.formLabel {
	text-align: left;
	vertical-align: middle;
	padding: 0 0 0 21px;
}
.form-field-container .formLabelRight {
	text-align: right;
	vertical-align: middle;
	padding: 0 10px 0 0;
	width: 120px;
}
.form-field-container .formField {
	text-align: left;
	vertical-align: middle;
	padding: 0 0 0 21px;
}
.form-field-container .formField2{
	text-align: left;
	vertical-align: middle;
	padding: 0 0 2px 20px;
}

.form-field-container {
	display: flex;
	padding-top:10px;
}