/* assets/css/admin-style.css */
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    font-family: system-ui, sans-serif;
    background:#f8fafc;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:1rem;
}

.container {
    background:white;
    width:100%;
    max-width:380px;
    padding:2rem 1.5rem;
    border-radius:12px;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    text-align:center;
}

.logo {
    max-width:160px;
    height:auto;
    margin:0 auto 1.5rem;
    display:block;
}

h1 {
    font-size:1.6rem;
    margin-bottom:1.8rem;
    color:#1e293b;
}

form {
    display:flex;
    flex-direction:column;
    gap:1.1rem;
}

input {
    padding:0.9rem 1rem;
    border:1px solid #cbd5e1;
    border-radius:8px;
    font-size:1rem;
}

input:focus {
    border-color:#36454;
    outline:none;
    box-shadow:0 0 0 3px rgba(59,130,246,0.1);
}

button {
    background:#3b82f6;
    color:white;
    border:none;
    padding:0.95rem;
    border-radius:8px;
    font-size:1rem;
    cursor:pointer;
}

button:hover {
    background:#2563eb;
}

.error {
    color:#ef4444;
    font-size:0.9rem;
    margin-top:0.6rem;
}

a {
    color:#3b82f6;
    font-size:0.9rem;
}

a:hover {
    text-decoration:underline;
}

@media (min-width:768px) {
    .container {
        padding:2.2rem 2rem;
        max-width:400px;
    }
    .logo {
        max-width:180px;
    }
}

.dashboard-logo {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem;
}

.dashboard-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    flex: 1 1 240px;
    max-width: 260px;
    background: white;
    border-radius: 16px;
    padding: 1.8rem 1.4rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-decoration: none;
    color: #1e293b;
    transition: all 0.25s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.card h2 {
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
    color: #3b82f6;
}

.card p {
    font-size: 0.95rem;
    color: #64748b;
}