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

.logo-container {
    text-align: center;
    padding: 20px;
}

.logo-img {
    width: 200px; /* Adjust the size as needed */
}

h1 {
    color: #333;
    text-align: center;
    padding-top: 20px;
}

form {
    width: 300px; /* Ensures the form is centered and consistent in size */
    margin: 20px auto;
    text-align: center; /* Centers all elements inside the form */
}

label {
    display: block;
    margin-top: 15px;
    color: #555;
}

input {
    width: 100%; /* Input fields take full width of the form */
    padding: 8px;
    margin-top: 5px;
}

button {
    width: 100%; /* Ensure the button width matches input fields */
    max-width: 150px; /* Optionally control the maximum width of the button */
    padding: 10px;
    margin-top: 20px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-block; /* Ensures the button remains inline and centered */
}

button:hover {
    background-color: #555;
}

.footer {
    text-align: center;
    padding: 20px;
}

.footer a img {
    width: 100px; /* Adjust the size of the developer logo */
    display: inline-block;
    vertical-align: middle;
}

.footer p {
    color: #777;
    font-size: 14px;
}

p {
    text-align: center;
    color: #777;
}

/* Language selector positioning in the top-right corner */
.language-selector {
    position: absolute;
    top: 10px; /* Adjust the vertical position */
    right: 20px; /* Adjust the horizontal position */
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.language-selector select {
    padding: 5px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.language-selector select:hover {
    background-color: #555;
}
