/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f5;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container, .chat-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    
    text-align: left;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    color: #555;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
     font-size: 24px;
}

button:hover {
    background-color: #45a049;
}










/* Caixa de mensagens */
.chat-box {
    border: 1px solid #ccc;
    padding: 10px;
    height: 400px;
    overflow-y: auto;  /* Habilitar rolagem automática */
    background-color: #fafafa;
    margin-bottom: 15px;
    border-radius: 5px;
}

/* Formulário de envio */
.chat-form {
    display: flex;
    justify-content: space-between;
}

.chat-form input {
    flex: 1;
    margin-right: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
