/* CSS styles for the login page */
body {
    font-family: Arial, sans-serif;
    background-color: black;
    text-align: center;
    margin: 0;
    padding: 0;
}
.login-image{
	width: 100px;
	height: 100px;
}

.login-container {
    width: 350px; /* Adjust the width as needed */
    margin: 100px auto;
    padding: 20px;
    background-color: black;
	border: 2px solid #00572c;
	color:white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.login-container:hover{
	border: 2px solid white;
	box-shadow: 0 0 10px white;
}

.login-container h2 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box; /* Add this property */
}

.Extras {
     text-align: left; /* Align links to the left */
}

        /* Style the anchor elements (links) */
.Extras a {
    color: #00572c; /* Make the links red by default */
    margin-right: 10px; /* Add space between links */
}
.Extras a:hover {
    color: white; /* Make the links red by default */
   
}
.login-button {
    background-color: #00572c;
    color: #fff;
    border: 1 px solid #00572c;
    border-radius: 3px;
    padding: 10px 20px;
    cursor: pointer;
}
.login-button:hover {
    background-color: white;
	color:red;
	box-shadow: 0 0 10px white;
   
}
img .link-img{
width:8vh;
}
.error-message{
	color:red;
}
.password-criteria {
    margin-top: 10px;
    font-size: 12px;
    text-align: left;  /* This will ensure left alignment */
}

.criteria-item {
    display: block;  /* This makes each criteria item appear on a new line */
    margin-bottom: 5px;
}

.icon {
    margin-right: 5px;
    color: #00572c;  /* Red color for the X icon */
}

.criteria-item .icon:contains("✔️") {
    color: green;  /* Green color for the checkmark icon */
}