body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #f4f6f9;
}

/* AUTH */
.auth-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-card {
    background: #fff;
    padding: 35px 30px;
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.auth-card h2 {
    margin-bottom: 5px;
}

.auth-card .subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.auth-card input {
    width: 100%;
    padding: 12px 14px;
    margin: 8px 0 4px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.auth-card input:focus {
    outline: none;
    border-color: #4e73df;
    box-shadow: 0 0 0 3px rgba(78,115,223,0.15);
}

.auth-card button {
    width: 100%;
    padding: 12px;
    background: #4e73df;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    margin-top: 10px;
}

.auth-card button:hover {
    background: #2e59d9;
}

.auth-card button:active {
    transform: scale(0.98);
}

.error {
    display: block;
    color: #e74a3b;
    font-size: 13px;
    margin-bottom: 8px;
}

.auth-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.auth-link a {
    color: #4e73df;
    text-decoration: none;
    font-weight: 500;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* RESPONSIVE DASHBOARD */
@media (min-width: 768px) {

    .market,
    .package-panel {
        width: 60%;
        margin: auto;
    }

}