body {
    background-color: #2d2f34;

    height: 100%;
    margin: 0;

    font-family: 'Courier New', Courier, monospace;
    color: #fff;
}

h2 {
    padding: 10px;
}

a {
    color: #ff8c00;
    text-decoration: none;
}

a:hover {
    color: #ffd700;
    text-decoration: underline;
}


.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url('/static/images/background.jpg');

    filter: blur(8px);
    -webkit-filter: blur(8px);

    height: 100%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    z-index: -1;
}

.login-container {
    max-width: 350px;
    margin: 100px auto;
    background: #a00;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    position: relative;
}

.form-field {
    position: relative;
    margin-bottom: 20px;
}

.form-field input {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    border: none;
    border-bottom: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 16px;
}

.icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-size: cover;
}

.submit-button {
    width: 100%;
    padding: 10px;
    border: none;
    background: #fff;
    color: #a00;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #ddd;
}

.navbar {
    background: #b00;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-username {
    color: #fff;
    font-weight: bold;
}

.logout-button {
    padding: 5px 10px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

.document-list ul {
    list-style-type: none;
    padding: 10px;
}

.document-list li {
    background: #333;
    color: #fff;
    margin: 5px 0;
    padding: 10px;
}

.action-form {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    margin: 20px auto;
    border: 1px solid #fff;
    border-radius: 10px;
    width: fit-content;
    max-width: 90%;
}

.action-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.action-form select {
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid #fff;
    background: #9e0000;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    outline: none;
}

.action-form button {
    cursor: pointer;
}

.action-form button:hover {
    background: #a59a9a;
}


@media (max-width: 768px) {
    .action-form form {
        flex-direction: column;
    }
}

.recovery-link {
    margin-top: 15px;
    text-align: center;
}

.recovery-link a {
    color: #fff;
    text-decoration: none;
}

.site-footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.github-link {
    color: #fff;
    text-decoration: none;
}

.github-link:hover,
.github-link:focus {
    text-decoration: underline;
}

.github-icon {
    width: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.container {
    width: 80%;
    margin: 0 auto;
    font-size: 0.6em;
}