<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Login - Tema Medieval de Conquista */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Cinzel', 'Segoe UI', serif;
    background: linear-gradient(135deg, #282840, #1e1e30);
    color: #f0e6ff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    background-image: url('/assets/img/teste.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.login-box {
    background: rgba(40, 40, 64, 0.85);
    padding: 30px;
    border-radius: 0;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 0 30px rgba(128, 90, 213, 0.4);
    border: 1px solid #805ad5;
    position: relative;
}

.login-box::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: transparent;
    border: 2px solid #98f374;
    pointer-events: none;
}

h2 {
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 1.8em;
    color: #d6bcfa;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(126, 87, 194, 0.6);
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #805ad5;
    margin: 10px auto 0;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 14px 15px;
    margin: 15px 0;
    border: none;
    border-bottom: 2px solid #98f374;
    background-color: rgba(37, 37, 241, 0.4);
    color: #f0e6ff;
    font-size: 1em;
    transition: all 0.3s;
    border-radius: 0;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    background-color: rgba(60, 60, 94, 0.6);
    border-bottom: 2px solid #9f7aea;
    box-shadow: 0 5px 15px rgba(37, 37, 241, 0.4);
}

.btn {
    width: 100%;
    padding: 14px;
    background: #98f374;
    color: white;
    border: none;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.btn:hover {
    background: #98f374;
    box-shadow: 0 0 20px rgba(159, 122, 234, 0.6);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(225, 7, 7, 0.2), transparent);
    transition: all 0.6s;
}

.btn:hover:before {
    left: 100%;
}

.message {
    color: #e9758f;
    margin-top: 15px;
    text-align: center;
    font-size: 0.95em;
}

@media (max-width: 400px) {
    .login-box {
        padding: 20px;
    }
}

/* Adiciona borda ornamental */
.login-box {
    position: relative;
}

.login-box:after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(89, 225, 103, 0.3);
    pointer-events: none;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1f1f1f;
    color: #f87171;
    text-align: center;
    padding: 10px 20px;
    border-top: 1px solid rgba(227, 52, 47, 0.3);
    box-shadow: 0 -2px 15px rgba(227, 52, 47, 0.2);
    z-index: 999;
}

.footer p &gt; a {
    color: #e3342f;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}</pre></body></html>