body {
  background-image: url('../images/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    margin: 0;
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Login form container */
.login-form {
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
    padding: 40px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    color: white;
}

/* Heading */
.login-form h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

/* Labels */
.login-form label {
    display: block;
    margin: 10px 0 5px;
    font-size: 14px;
}

/* Input fields */
.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    background: rgb(50, 50, 50);
    color: white;
    border: none;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

.login-form input:focus {
    outline: none;
    border: 1px solid blue;
}

.login-form input::placeholder {
    color: #9e9e9e;
}

/* Row for checkbox + link */
.login-form .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 15px;
}

.login-form .row a {
    color: skyblue;
    text-decoration: none;
}

.login-form .row a:hover {
    text-decoration: underline;
}

/* Button (using your standards) */
.login-form button {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: white;
    border: 2px solid lightgray;
    font-family: inherit;
    cursor: pointer;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.login-form button:hover {
    color: skyblue;
    border-color: red;
    box-shadow: 0 0 20px red;
    text-shadow: 0 0 20px skyblue;
}

/* Help text */
.login-form .help {
    text-align: center;
    font-size: 13px;
    margin-top: 15px;
}

.login-form .help a {
    color: skyblue;
    text-decoration: none;
}

.login-form .help a:hover {
    text-decoration: underline;
}








