

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background: radial-gradient(circle, rgba(23,31,54,1) 0%, rgba(27,43,70,1) 100%);
}

.stars {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEwMDAiIGZpbGw9IiM2MTY3NzMiIC8+PHBhdGggZD0iTTUwMCAwTDAgMjUwbDUwMCAyNTAgNTAwLTI1MFpNNTAgNzUwTDE1MCA1MDBMMTUwIDk1MCAxNTAgNTAwTDE1MCA3NTBMNTAgNzUwWk01MDAgNzUwTDE1MCA1MDBMMTkwIDQ1MEw0NTAgNzUwTDE5MCA5NTBMNTAwIDc1MFpNNjUwIDUwMEw1MDAtNTAgMjUwIDI1MEw1MDAtNTBMNjUwIDUwMFpNNTAwIDU0OEwyNTAgODAwTDAgNTQ4TDI1MCAyMDBMNTAwIDU0OFoiIGZpbGw9InJnYmEoMjU1LDEyOCwyMTgsMC4xNSkiIC8+PC9zdmc=') repeat;
    opacity: 0.1;
}

.login-wrapper {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Full viewport height */
    width: 100vw; /* Full viewport width */
    position: relative; /* To maintain layout structure */
    z-index: 1; /* Ensure it's behind floating elements if needed */
}

.login-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    width: 350px;
    position: relative;
    z-index: 2;
    color: #333;
}

.login-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
    font-size: 1.5rem;
}

.login-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.login-container input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.2);
}

.login-container button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background: #5a78a8;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.login-container button:hover {
    background: #3f5477;
}

.error-message {
    color: red;
    text-align: center;
    margin-bottom: 10px;
}
