/* LOGIN SUPER SIMPLES - SEM CONTORNOS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #C41E3A 0%, #003366 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Esconder Framework7 */
#app, .view-main, .page, .page-content {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 20px;
}

/* Card branco centralizado - MAIS LARGO */
.login-container {
    background: white;
    border-radius: 24px;
    padding: 48px 50px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo {
    text-align: center;
    margin-bottom: 36px;
}

.logo img {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    margin-bottom: 14px;
    border: 3px solid rgba(196, 30, 58, 0.1);
}

.logo h1 {
    color: #C41E3A;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Mensagem erro */
.erro {
    background: #ffebee;
    color: #c62828;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
}

/* Formulário */
form {
    width: 100%;
}

/* IGNORAR Framework7 */
.list, .list ul, .list li,
.item-content, .item-inner, .item-input-wrap,
.item-title, .item-label {
    all: unset;
    display: block;
}

/* Remover linhas do Framework7 */
.list::before, .list::after,
.list ul::before, .list ul::after,
.item-content::before, .item-content::after {
    display: none !important;
}

/* Campo - SIMPLES */
.list li {
    margin-bottom: 20px;
}

.item-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.item-input-wrap input,
input[type="email"],
input[type="password"] {
    display: block;
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    color: #333;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
}

input:focus {
    outline: none;
    border-color: #C41E3A;
    background: white;
}

input::placeholder {
    color: #999;
}

/* Botão */
button[type="submit"],
.button {
    display: block;
    width: 100%;
    padding: 16px;
    margin-top: 24px;
    background: linear-gradient(135deg, #C41E3A 0%, #003366 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.35);
}

button:hover {
    transform: translateY(-2px);
}

/* Links */
.login-links {
    margin-top: 24px;
    text-align: center;
}

.login-links p {
    margin: 8px 0;
    font-size: 14px;
    color: #666;
}

.login-links a {
    color: #C41E3A;
    font-weight: 600;
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 480px) {
    .login-container {
        padding: 36px 28px;
    }
    
    .logo img {
        width: 85px;
        height: 85px;
    }
    
    .logo h1 {
        font-size: 22px;
    }
}

