/* /Layout/LoginLayout.razor.rz.scp.css */
.main[b-rnd7m7rexj] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Fallback za stare browsere */
    min-height: 100dvh; /* Pravi iznos za mobilne uređaje */
    background-color: #f8fafc; /* Svijetla Tailwind pozadina (slate-50) */
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* /Layout/NavMenu.razor.rz.scp.css */
/* /Pages/Login.razor.rz.scp.css */
.login-container[b-mqdc3m34u0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
}

.login-box[b-mqdc3m34u0] {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.logo-circle-lg[b-mqdc3m34u0] {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1.5rem auto;
}

.login-box h2[b-mqdc3m34u0] {
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.login-box p[b-mqdc3m34u0] {
    color: #64748b;
    margin-bottom: 2rem;
}

.form-control[b-mqdc3m34u0] {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
}

    .form-control:focus[b-mqdc3m34u0] {
        border-color: #3b82f6;
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    }

.btn-primary[b-mqdc3m34u0] {
    background: #3b82f6;
    border: none;
    border-radius: 12px;
    transition: all 0.2s ease;
}

    .btn-primary:hover[b-mqdc3m34u0] {
        background: #2563eb;
        transform: translateY(-1px);
    }
