body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.login-container, .chat-container {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-container {
    padding: 20px;
}

.login-container h2 {
    text-align: center;
    color: #075e54;
}

.login-container form {
    display: flex;
    flex-direction: column;
}

.login-container input {
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.login-container button {
    padding: 8px;
    background-color: #075e54;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.login-container button:hover {
    background-color: #054c44;
}

/* Estilos existentes do chat */
.chat-header {
    background-color: #075e54;
    color: white;
    padding: 10px;
    text-align: center;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.message {
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    max-width: 80%;
}

.user-message {
    background-color: #dcf8c6;
    align-self: flex-end;
    margin-left: auto;
}

.bot-message {
    background-color: #ffffff;
}

.chat-input {
    display: flex;
    padding: 10px;
}

.chat-input input {
    flex-grow: 1;
    padding: 5px;
}

.chat-input button {
    padding: 5px 10px;
    background-color: #075e54;
    color: white;
    border: none;
    cursor: pointer;
}/* Adicione isso ao seu arquivo styles.css */
.or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.or-divider span {
    padding: 0 10px;
    color: #777;
}

#googleLoginButton {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
