* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: #f5f5f5;
    color: #111;
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 430px;
    background: #fff;
    padding: 36px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 26px;
}

.logo span {
    color: #6C5CE7;
}

.auth-card h1 {
    font-size: 30px;
    margin-bottom: 8px;
}

.auth-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 24px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

label {
    font-size: 14px;
    font-weight: 600;
}

input {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
}

input:focus {
    border-color: #6C5CE7;
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.12);
}

button {
    margin-top: 12px;
    padding: 15px;
    border: none;
    border-radius: 16px;
    background: #6C5CE7;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(108, 92, 231, 0.3);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    color: #666;
}

.auth-footer a {
    color: #6C5CE7;
    text-decoration: none;
    font-weight: 700;
}

.alert {
    padding: 13px 15px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-size: 14px;
}

.alert.error {
    background: #ffecec;
    color: #b00020;
}

.alert.success {
    background: #eafff1;
    color: #087a35;
}

.dashboard {
    min-height: 100vh;
    padding: 40px;
}

.dashboard-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.logout-btn {
    display: inline-block;
    margin-top: 20px;
    background: #111;
    color: white;
    padding: 13px 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
}