/* Stylesheet */
/* ===== ОБЩИЕ СТИЛИ ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f1f3f4;
}

/* ===== LOGIN / REGISTER ===== */
.auth-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* контейнер */
.box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.box h2 {
    text-align: center;
}

/* input */
.box input {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* кнопка */
.box button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: #1a73e8;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.box button:hover {
    background: #1557b0;
}

/* текст */
.small {
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
}

/* футер */
.footer {
    position: fixed;
    bottom: 15px;
    width: 100%;
    text-align: center;
    font-size: 12px;
}

/* ===== MAIL UI ===== */
.mail-body {
    display: flex;
    height: 100vh;
}

/* sidebar */
.sidebar {
    width: 220px;
    background: #202124;
    color: white;
    padding: 20px;
}

.sidebar h2 {
    margin-top: 0;
}

.sidebar button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background: #3c4043;
    border: none;
    color: white;
    cursor: pointer;
}

.sidebar button:hover {
    background: #5f6368;
}

/* список писем */
.list {
    width: 300px;
    border-right: 1px solid #ddd;
    overflow-y: auto;
    background: white;
}

.mail-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.mail-item:hover {
    background: #f1f3f4;
}

/* просмотр письма */
.view {
    flex: 1;
    padding: 20px;
    background: #fff;
}
