@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Roboto:ital,wght@0,400;0,700;1,400&display=swap');

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: "Roboto", sans-serif;
}

.container {
    max-width: 400px;
    margin: 50px auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center; /* Center the content */
}

.logo-container {
    text-align: center;
    margin-bottom: 20px; /* Add margin bottom */
}

.logo {
    max-width: 100px;
}

h2 {
    font-family: "Bungee", sans-serif;
    font-size: 46px;
    margin-bottom: 20px;
    text-align: center;
}

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

input[type="email"],
input[type="password"] {
    width: calc(100% - 20px); /* Adjust width */
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-align: center;
    margin: 0 auto; /* Center the input */
    display: block; /* Ensure inputs are displayed as block elements */
}

button {
    width: calc(100% - 20px); /* Adjust width */
    padding: 10px;
    background-color: #eee;
    color: #222;
    border: none;
    border-radius: 5px;
    display: block; /* Ensure button is displayed as block element */
    margin: 0 auto; /* Center the button */
    font-weight: 700;
    text-transform: uppercase;
}

button:hover {
    background-color: #3d58d1;
}

button:focus {
    outline: none;
}

/* Media Queries */
@media (max-width: 600px) {
    .login-container {
        max-width: 80%;
    }
}

.error-message {
    /* font-style: italic;
    */opacity: 40%
}

#loadingText {
    color: #fff;
}

.hidden {
    opacity: 0%
}