body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.logo-container {
    position: absolute;
    top: 5px;
    right: 20px;
    z-index: 100;
}

.logo {
    height: 100px; 
    width: auto;
	object-fit: contain;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
    text-align: center;
    color: #333;
}
label {
    display: block;
    margin-top: 15px;
}

input[type="text"],
input[type="password"],
input[type="number"] {
    width: 96.5%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-weight: bold;
    background-color: #f8f8f8;
    cursor: pointer;
}

button:hover {
    /* color: #007BFF; */
    text-decoration: none;
    background-color: #eef5ff;
}
a {
    color: #007BFF;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.9em;
    text-align: right;
}