body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
}

h1 {
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px #3333;
}

form {
    background: rgba(255,255,255,0.95);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-width: 320px;
}

label {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

input[type="text"], input[type="password"] {
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.2s;
}

input[type="text"]:focus, input[type="password"]:focus {
    border: 1.5px solid #764ba2;
    outline: none;
}

button[type="submit"] {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px #764ba244;
    transition: background 0.2s, transform 0.1s;
}

button[type="submit"]:hover {
    background: linear-gradient(90deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px) scale(1.03);
}

#formloginstatus {
    margin-top: 1.5rem;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 6px #333a;
    min-height: 1.5em;
    text-align: center;
}
