body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

.logo-prefeitura {
    max-width: 240px;
    margin-bottom: 15px;
}


.login-container {
    display: flex;
    height: 100vh;
}

.login-left {
    width: 50%;
    background: linear-gradient(135deg, #0d6efd, #198754);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.login-left .overlay {
    padding: 40px;
}

.login-left h1 {
    font-size: 48px;
    font-weight: bold;
}

.login-right {
    width: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    width: 100%;
    max-width: 380px;
}

.btn-login {
    background: linear-gradient(135deg, #0d6efd, #198754);
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-weight: bold;
}

@media(max-width: 768px) {
    .login-left {
        display: none;
    }

    .login-right {
        width: 100%;
    }
}