/* 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: 150px;
	height: 150px;
}

.login-container {
    width: 350px; /* Adjust the width as needed */
    margin: 100px auto;
    padding: 20px;
    background-color: black;
	border: 2px solid darkred;
	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: red; /* 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: darkred;
    color: #fff;
    border: 1 px solid darkred;
    border-radius: 3px;
    padding: 10px 20px;
    cursor: pointer;
}
.login-button:hover {
    background-color: white;
	color:red;
	box-shadow: 0 0 10px white;
   
}

.links {
    max-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
    column-gap: 20px;
}

.links a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.link-img {
    width: 8vh;
}
.error-message{
color:red;
}