body.login-form {
    
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    top: 0;
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Make body full height of viewport */
	
	flex-direction: column;

	background-image: url('../Login/user_logos/background.jpg'); /* Replace 'your-image.jpg' with your image path */
    background-size: cover; /* Cover the entire background */
    background-repeat: no-repeat; /* Do not repeat the background image */
    background-position: center; /* Center the background image */
    /* Adjust the RGBA values for the desired transparency */

}

form.login-form {
    width: 90%;
    max-width: 400px; /* Limit form width on larger screens */
    border: 2px solid #123C69;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-sizing: border-box; /* Ensure padding is included in width */
}

h2.login-form {
    text-align: center;
    margin-bottom: 20px; /* Reduce margin for smaller screens */
}

input.login-form,
select.login-form {
    display: block;
    width: calc(100% - 20px); /* Subtract the padding and border widths */
    padding: 8px; /* Adjusted padding */
    margin: 10px auto; /* Center the inputs */
    border: 2px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding is included in width */
}

button.login-form {
    width: calc(100% - 4px); /* Adjust for border width */
    background: #123C69;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.error {
    background: #F2DEDE;
    color: #A94442;
    padding: 10px;
    border-radius: 5px;
    margin: 20px 0;
    text-align: center;
}

h1.login-form {
    text-align: center;
    color: #fff;
    margin-bottom: 10px; /* Reduce margin for smaller screens */
    width: 100%;
    top:0;
}

a.login-form {
    text-align: center; /* Center align the link */
    background: #555;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block; /* Ensure the link displays as a block element */
}

a.login-form:hover,
button.login-form:hover {
	background: #AC3B61;

}
.main_logo {
	/* Adjust the path to your IconsFolder and the specific icon file */
	background: url('../Login/user_logos/logo2.png') center/cover;
	display: inline-block;
	width: 50px; /* Adjust the width according to your icon size */
	height:50px; /* Adjust the height according to your icon size */
	vertical-align: middle;
	padding: 0px;
	margin: 0px;
	justify-self: center;
  }

  h1.login-form{

	color: #FFFFFF;
	background-color: #123C69;
	padding: 20px;
  }

  h2.login-form{

	color: #123C69;
	
  }
  
  label.login-label{
	color: #AC3B61;
	font-weight: bold;
  }


  .portal-link {
    margin: 20px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* Change the background color as needed */
    color: #fff; /* Text color */
    text-decoration: none;
    border-radius: 5px; /* Rounded corners */
    font-family: Arial, sans-serif; /* Optional: Specify font family */
    font-size: 16px; /* Optional: Specify font size */
}

.portal-link:hover {
    background-color: #0056b3; /* Change the background color on hover */
}
