* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #74ebd5, #ACB6E5);
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #007BFF; /* cor de fundo azul */
    color: white;
    padding: 15px 20px;
    margin: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-bottom: 3px solid #0056b3;
}

body {
    display: block !important;
    flex-direction: column !important;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #007BFF;
    color: white;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-bottom: 3px solid #0056b3;
}

.container {
    margin: 40px auto;
    max-width: 900px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
}


header img {
    height: 55px;
    margin-right: 15px;
}

header h1 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}


.container {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 15px 35px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 700px;
    text-align: center;
}

h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #333;
}

h3 {
    margin-bottom: 0px;
    font-size: 20px;
    color: #007BFF;
}

input[type="text"], input[type="password"], input[type="color"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
}

button {
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
}

/* Cards de votação */
.votacao-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chapa-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    background: #f7f9fc;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
    border-left: 10px solid;
    text-align: center;
}

.chapa-card:hover {
    background: #e0f7fa;
    transform: translateY(-5px);
}

.chapa-icone {
    font-size: 50px;
    margin-bottom: 10px;
}

.chapa-nome {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.chapa-membros {
    font-size: 16px;
    color: #555;
}

.btn-confirm {
    background-color: #28A745;
    color: #fff;
    width: 60%;
    font-size: 20px;
    margin-top: 20px;
}

.btn-confirm:hover {
    background-color: #218838;
}
.btn-sair {
    background:#ff0202;
}
.btn-sair:hover {
    background:#ff0202;
}