.auth-body {
    background: var(--bg-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 500px;
}

.auth-card {
    background: var(--comment-bg-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.auth-logo {
    margin-bottom: 20px;
    color: var(--text-color);
}

.auth-header .h2 {
    margin: 0;
}

/* Auth Messages */
.auth-message.error {
    color: var(--red);
}

.auth-message.success {
    color: var(--green);
}

/* Form Styles */
.auth-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Auth Alternative */
.auth-alternative {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}