body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f7f7f7;
}

.form-container {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

input:focus {
    border-color: #007BFF;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-sizing: border-box;
}

button:hover {
    background-color: #0056b3;
}

.message {
    text-align: center;
    font-size: 14px;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
}

#senhaFeedback {
    font-size: 12px;
    color: #ff4d4d;
}

@media (max-width: 600px) {
    .form-container {
        padding: 20px;
    }
}

.feedback {
    color: red;
    font-size: 0.9em;
    margin-top: 10px;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}


:root {
    --background-color: #ffffff;
    --text-color: #000000;
    --sidebar-bg: #f4f4f4;
    --email-item-bg: #ffffff;
    --email-item-hover-bg: #f0f0f0;
}

body.theme-dark {
    --background-color: #181818;
    --text-color: #e0e0e0;
    --sidebar-bg: #282828;
    --email-item-bg: #202020;
    --email-item-hover-bg: #303030;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    height: 100vh;
}

.container {
    display: flex;
    width: 100%;
}

.sidebar {
    width: 250px;
    background-color: var(--sidebar-bg);
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.sidebar li:hover {
    background-color: var(--email-item-hover-bg);
}

.email-view {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.email-view header {
    padding: 20px;
    background-color: var(--sidebar-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.email-list {
    list-style: none;
    padding: 20px;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.email-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    background-color: var(--email-item-bg);
    transition: background-color 0.2s ease;
}

.email-item:hover {
    background-color: var(--email-item-hover-bg);
}

.email-details {
    display: flex;
    flex-direction: column;
}

.email-from {
    font-weight: bold;
}

.email-meta {
    text-align: right;
    color: #888;
}
