/* ============================================
   LOGIN NOVO - CSS LIMPO E GRANDE
   ============================================ */

* {
    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;
    padding: 20px;
}

/* 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 - MUITO GRANDE */
.login-container {
    background: white;
    border-radius: 40px;
    padding: 100px 80px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Logo - MUITO GRANDE */
.logo {
    text-align: center;
    margin-bottom: 60px;
}

.logo img {
    width: 280px;
    height: 280px;
    border-radius: 32px;
    margin-bottom: 32px;
    border: 8px solid rgba(0, 51, 102, 0.3);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.4);
    object-fit: cover;
}

.logo h1 {
    color: #003366;
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 2px 4px rgba(0, 51, 102, 0.1);
}

/* Mensagem erro */
.erro {
    background: #ffebee;
    color: #c62828;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 32px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

/* 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 - MUITO GRANDE */
.list li {
    margin-bottom: 40px;
}

.item-title {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #003366;
    margin-bottom: 20px;
}

.item-input-wrap input,
input[type="email"],
input[type="password"] {
    display: block;
    width: 100%;
    padding: 32px 40px;
    font-size: 28px;
    color: #333;
    background: #f8f9fa;
    border: 5px solid #e0e0e0;
    border-radius: 20px;
    font-family: inherit;
    min-height: 100px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #003366;
    background: white;
    box-shadow: 0 0 0 6px rgba(0, 51, 102, 0.15);
}

input::placeholder {
    color: #999;
    font-size: 26px;
}

/* Botão - MUITO GRANDE */
button[type="submit"],
.button {
    display: block;
    width: 100%;
    padding: 32px;
    margin-top: 50px;
    background: linear-gradient(135deg, #003366 0%, #001f3f 100%);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.5);
    min-height: 100px;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 51, 102, 0.6);
}

button:active {
    transform: translateY(-1px);
}

/* Links - GRANDES */
.login-links {
    margin-top: 50px;
    text-align: center;
}

.login-links p {
    margin: 20px 0;
    font-size: 24px;
    color: #666;
    line-height: 1.8;
}

.login-links a {
    color: #003366;
    font-weight: 800;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
}

.login-links a:hover {
    text-decoration: underline;
    color: #001f3f;
}

/* Responsivo */
@media (max-width: 768px) {
    .login-container {
        padding: 70px 50px;
        max-width: 100%;
    }
    
    .logo img {
        width: 220px;
        height: 220px;
    }
    
    .logo h1 {
        font-size: 48px;
    }
    
    .item-title {
        font-size: 24px;
    }
    
    .item-input-wrap input,
    input[type="email"],
    input[type="password"] {
        padding: 28px 32px;
        font-size: 24px;
        min-height: 90px;
    }
    
    button[type="submit"],
    .button {
        padding: 28px;
        font-size: 24px;
        min-height: 90px;
    }
    
    .login-links p {
        font-size: 22px;
    }
    
    .login-links a {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 60px 40px;
    }
    
    .logo img {
        width: 200px;
        height: 200px;
    }
    
    .logo h1 {
        font-size: 42px;
    }
    
    .item-title {
        font-size: 22px;
    }
    
    .item-input-wrap input,
    input[type="email"],
    input[type="password"] {
        padding: 24px 28px;
        font-size: 22px;
        min-height: 85px;
    }
    
    button[type="submit"],
    .button {
        padding: 24px;
        font-size: 22px;
        min-height: 85px;
    }
    
    .login-links p {
        font-size: 20px;
    }
    
    .login-links a {
        font-size: 20px;
    }
}

