/* CSS for particles.js background */
#particles-js, #tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure the particles are behind everything else */
}

/* CSS for centering the login form */
.login-container {
    position: relative;
    max-width: 300px;
    margin: auto;
    padding-top: 100px; /* Adjust as needed */
    text-align: center;
}

/* Styling for the form elements */
input[type="text"], input[type="password"], button {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Increased bottom margin for password input */
input[type="password"] {
    margin-bottom: 16px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

button:hover {
    opacity: 0.8;
}

body {
    background-color: #000000;
}
