/* Definir fundo gradiente para o body */
body {
    height: 100%; /* Garante que o body ocupe toda a altura da tela */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh; /* Garante que o body ocupe toda a altura disponível */
    background: linear-gradient(to right, #26C9DA, #205C75); /* Gradiente como fundo */
    font-family: Arial, sans-serif;
}

/* Estilo do container */
.container {
    width: 90%;
    max-width: 600px;
    height: 100vh;     /* 70% da altura da tela */
    overflow-y: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    box-sizing: border-box;
    text-align: center;
}


/* Adaptação para telas menores */
@media (max-width: 600px) {
    .container {
        width: 100%; /* Aumenta a largura para preencher a tela em dispositivos pequenos */
        padding: 15px; /* Reduz o padding em telas pequenas */
    }
}

/* Estilo dos botões, alinhados à direita */
.botoes-container {
    display: flex;
    justify-content: flex-end; /* Alinha os botões à direita */
    width: 100%;
    margin-bottom: 20px; /* Adiciona espaçamento abaixo dos botões */
}

.botoes-container a {
    text-decoration: none;
    color: #205C75;
    font-size: 16px;
    margin-left: 10px; /* Espaçamento entre os botões */
}

.botoes-container a:hover {
    color: #26C9DA;
}

/* Estilo da logo */
.logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
    margin-top: 20px; /* Garante que a logo tenha um espaço adequado no topo */
    display: block;
    margin-left: auto;
    margin-right: auto; /* Centraliza a logo */
}

/* Estilo de inputs */
input[type="text"], input[type="email"], input[type="password"] {
    width: 90%;
    max-width: 300px;
    padding: 8px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Estilo do botão */
button {
    margin-top: 10px;
    padding: 10px 20px;
    background: linear-gradient(to right, #26C9DA, #205C75); /* Gradiente no botão */
    color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

button:hover {
    background: linear-gradient(to right, #205C75, #26C9DA);
}

/* Estilo das mensagens */
.mensagem {
    margin-top: 10px;
    padding: 5px;
    background: #f9f9f9;
    border-radius: 5px;
    text-align: left;
    line-height: 1.1;
    font-size: 16px;
}

.autor {
    font-size: 12px;
    color: #555;
}

/* Estilo para os grupos */
.grupos {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap; /* Permite que os grupos se ajustem em múltiplas linhas, se necessário */
    gap: 10px; /* Adiciona espaçamento entre os itens */
}

.grupos span {
    background: #26C9DA;
    padding: 3px 5px;
    border-radius: 5px;
    color: white;
    display: inline-block;
    line-height: 1.2;
}

.grupos span:hover {
    background: #205C75;
}

/* Estilo de links */
a {
    color: #205C75;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.grupo-item {
    display: flex;
    align-items: center; /* Alinha verticalmente todos os itens */
    margin-bottom: 5px;
}

.grupo-item .bolinha {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #26C9DA;
    margin-right: 10px; /* Espaço entre a bolinha e o texto */
}

.grupo-item span {
    flex-grow: 1; /* Faz o texto ocupar o espaço disponível */
}

.grupo-item a {
    display: flex;
    align-items: center; /* Centraliza o ícone verticalmente dentro do link */
    margin-left: 10px; /* Espaço entre o texto e o ícone */
}

.grupo-item a i {
    font-size: 16px; /* Tamanho do ícone */
    color: #26C9DA; /* Cor combinando com a bolinha */
    transition: color 0.3s; /* Efeito suave ao passar o mouse */
}

.grupo-item a:hover i {
    color: #1a9bb0; /* Cor mais escura no hover */
}