#header {
    height: 105px;
    background: url(../images/login/portal_login_header.png) no-repeat center center;
    background-size: 75%;
    margin-bottom: 4rem;
    margin-left: 20px;
    position: relative;
    text-align: center;
}

.distinguish-text {
	font-family: 'Open Sans', sans-serif;
    font-size: 21px;
    color: white;
    left: -8px;
    width: 100%;
    position: absolute;
    top: 105px;
    font-weight: bold;
}

body {
    background: linear-gradient(to bottom, #0076fc, #000000 ); 
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#container {
    background-color: #14253e; /* Darker blue container */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 40px 30px;
    text-align: center;
    width: 400px;
}

#container img {
    width: 100px; /* Adjust as necessary */
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 20px;
    font-size: 1.5em;
}

input[type="text"], input[type="password"] {
    background-color: #0c1a2b; /* Dark input background */
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #ffffff; /* White text */
    margin: 10px 0; /* Changed margin for better alignment */
    padding: 10px;
    width: calc(100% - 50px); /* Adjust input width to accommodate the eye icon */
    box-sizing: border-box; /* Ensures padding and width calculation works as expected */
}

.password-wrapper {
    position: relative;
    width: 100%;
    display: inline-block;
}

input[type="password"], input[type="text"] {
    background-color: #0c1a2b; /* Dark input background */
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #ffffff; /* White text */
    padding: 10px;
    padding-right: 40px; /* Padding on the right to make room for the button */
    width: 100%;
    box-sizing: border-box; /* Ensures padding and width calculation works as expected */
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 66%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.password-toggle img {
    width: 20px !important;
    height: auto !important;
    vertical-align: middle;
}

input[type="submit"] {
    background-color: #1e90ff; /* Blue submit button */
    border: none;
    border-radius: 5px;
    color: #ffffff; /* White text */
    cursor: pointer;
    font-size: 16px;
    margin: 20px auto;
    padding: 12px;
    width: 200px;
    display: block;
}

input[type="submit"]:hover {
    background-color: #1c86ee; /* Slightly darker blue on hover */
}

a {
    color: #1e90ff; /* Blue link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

u {
    color: #1e90ff; /* Blue link color */
    text-decoration: none;
    margin: 5px 10px;
    display: inline-block;
    font-weight: bold;
    transition: color 0.3s ease;
}

u:hover {
    color: #63b8ff; /* Lighter blue on hover */
    text-decoration: underline;
}

.error-message {
    color: #ff0000; /* Red error message */
    font-weight: bold;
    margin: 15px 0;
    text-align: center;
}

#container p {
    margin: 10px 0;
}