body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    position: relative;
    text-align: center;
    color: #111;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

.login-container {
    background: #fff;
    padding: 30px 30px 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    max-width: 400px;
    width: 100%;
    z-index: 1;
    color: #111;
}

.login-container h1,
.login-container h2 {
    margin-bottom: 20px;
    color: #111;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.login-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    color: #111;
    font-size: 1em;
}

.login-container button {
    width: 100%;
    padding: 12px;
    background: #111;
    color: #ff6600;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 1.1em;
    font-weight: 600;
    box-shadow: 0 2px 8px #0002;
    transition: background 0.3s, color 0.2s, box-shadow 0.2s;
}

.login-container button:hover {
    background: #ff6600;
    color: #111;
    box-shadow: 0 4px 16px #ff660033;
}

.login-container a {
    color: #111;
    text-decoration: underline;
    transition: color 0.2s;
}

.login-container a:hover {
    color: #ff6600;
}

.footer {
    position: absolute;
    bottom: 10px;
    text-align: center;
    z-index: 1;
    color: #111;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 2px 8px #0002;
}

.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.container {
    max-height: 90vh;
    overflow-y: auto;
    margin: 30px auto;
    width: 400px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    padding: 20px 30px;
    color: #111;
}

.container h1,
.container h2,
.container h3 {
    color: #111;
    text-align: center;
}

.container h3 {
    background: #111;
    color: #ff6600;
    border-radius: 8px;
    padding: 8px 0 8px 0;
    box-shadow: 0 1px 8px #0001;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.15em;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s, background 0.2s;
}

.container h3:hover {
    color: #fff;
    background: #ff6600;
}

.container a {
    color: #111;
    text-decoration: underline;
    transition: color 0.2s, background 0.2s;
}

.container a:hover {
    color: #ff6600;
    background: #fff3e6;
}